/* 
cor site
#F0C2A2
#EEEEEE 
*/

:root {
    --color-site-primary: #F0C2A2;
    --color-site-secondary: #EEEEEE;
}

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
}

/* Icone contato */

.whatsapp-content {
    bottom: 9rem;
}

.whatsapp-button {
    width: 50px;
    height: 50px;
    background-color: green;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    width: 50px;
    height: auto;
}

.tiktok-content {
    bottom: 1rem;
}

.tiktok-button {
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tiktok-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.tiktok-icon {
    width: auto;
    height: 25px;
}

.instagram-content {
    bottom: 5rem;
}

.instagram-button {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.instagram-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.instagram-icon {
    width: 25px;
    height: auto;
}

.whatsapp-canal-content {
    bottom: 13rem;
}

.whatsapp-canal-button {
    width: 50px;
    height: 50px;
    background-color: green;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-canal-icon {
    width: 25px;
    height: auto;
}

/* Navbar */
nav {
    background-color: var(--color-site-secondary);
}

#logo-nav {
    width: 125px;
    height: auto;
    margin: 0 auto;
}

/* Seção sobre nos */

/* #background-overlay-empresa {
    height: 100%;
    background-color: var(--color-site-primary);
    border-radius: 20px;
    opacity: 25%;
    z-index: 0;
} */

#sobrenos {
    border-top: 10px solid var(--color-site-primary);
    background-color: white;
    height: max-content;
}

#titulo-diferente {
    text-transform: uppercase;
    color: var(--color-site-primary);
    border-bottom: 5px solid var(--color-site-primary);
}

#titulo-acima-empresa {
    font-size: medium;
}

#img-sobre-empresa {
    padding: 0;
    background-image: url('../img/faixada-bubili-pequeno.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px;
}

.text-justify {
    text-align: justify;
}

/* Seção Alguns produtos */

#servicos {
    background-color: var(--color-site-secondary);
    position: relative;
    padding: 0;
}

/* Container de vídeo vertical */
.video-card.vertical-format {
    width: 100%;
    max-width: 300px;
    /* Largura máxima para manter proporção */
    margin: 0 auto;
}

.video-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    /* Preto com 70% de opacidade */
    color: white;
    z-index: 2;
    /* Garante que fique acima do vídeo e do overlay */
    transition: all 0.3s;
}

/* Estilos para o texto */
.video-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.video-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.video-card:hover .video-text {
    background: rgba(0, 0, 0, 0.8);
    /* Fica mais escuro no hover */
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    /* Proporção 9:16 (16/9 = 1.7778) */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.custom-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-overlay i.bi-play-circle-fill {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s;
}

.video-overlay:hover i.bi-play-circle-fill {
    color: white;
    transform: scale(1.1);
}

/* Garante que o overlay seja clicável */
.video-overlay {
    pointer-events: auto;
    z-index: 3;
    /* Adicione esta linha */
}

.video-info {
    padding: 20px;
    background: white;
    border-radius: 0 0 12px 12px;
}

.video-info h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.video-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .video-card.vertical-format {
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .video-card.vertical-format {
        max-width: 100%;
    }

    .video-wrapper {
        padding-top: 177.78%;
        /* Mantém a proporção */
    }
}

@media (max-width: 768px) {
    #conteudo-alguns-servicos {
        padding: 20px 15px;
    }

    .video-info h3 {
        font-size: 1.1rem;
    }
}

/* Contato */

#contato-informacoes {
    background-color: var(--color-site-primary);
}

.text {
    color: var(--color-site-primary);
}

#enviar {
    background-color: var(--color-site-primary);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#enviar:hover {
    background-color: #d1a78c;
}

#btn-cancelar-contato {
    border: 1px solid var(--color-site-primary) !important;
    color: black;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#btn-cancelar-contato:hover {
    background-color: var(--color-site-primary);
    border: none;
    color: white;
}

/* Footer/rodapé */

.footer {
    background-color: var(--color-site-secondary);
    color: black;
    padding: 40px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer a {
    color: black;
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-site-primary);
}

.footer .social-icons a {
    margin: 0 10px;
    font-size: 1.5rem;
}

.copyright {
    background-color: var(--color-site-primary);
    color: #FFFFFF;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-site-primary);
    color: #FFFFFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    cursor: pointer;
}

#logo-footer {
    width: 200px;
    height: auto;
}

#desenvolvedor {
    color: white;
}

@media (max-width: 568px) {
    #captcha {
        justify-content: center;
    }
}