/*************************************************************
 * CTC BROTHERS - INSTRUTOR DE DIREÇÃO
 * Layout Clean Preto & Amarelo
 *************************************************************/

/* RESET E VARIÁVEIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #1a1a1a;
    --amarelo: #FFD700;
    --amarelo-escuro: #E6C200;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --cinza-medio: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/*************************************************************
 * HEADER / HERO SECTION
 *************************************************************/
header {
    position: relative;
    height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* Efeito de vinheta nas bordas (opcional, mas fica mais profissional) */
header::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    z-index: 1;
    pointer-events: none;
}


.header-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/*************************************************************
 * LOGO NO HEADER COM EFEITO GLOW
 *************************************************************/
.header-logo {
    position: absolute;
    top: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease;
    
}

.logo-img {
    height: 300px; /* Ajuste conforme necessário */
    width: auto;
    display: block;
    
    
    /* Efeito de sombra branca (glow) */
    filter: 
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
        drop-shadow(0 0 30px rgba(255, 255, 255, 0.4))
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)); /* Sombra preta sutil embaixo */
    
    transition: all 0.3s ease;
}

/* Efeito hover - intensifica o glow */
.header-logo:hover .logo-img {
    filter: 
        drop-shadow(0 0 15px rgba(255, 255, 255, 1))
        drop-shadow(0 0 30px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 45px rgba(255, 255, 255, 0.6))
        drop-shadow(0 3px 12px rgba(0, 0, 0, 0.4));
    transform: scale(1.05);
}

/* Logo menor ao scrollar (opcional, já implementado no JS) */
.header-logo.scrolled .logo-img {
    height: 60px;
}

/*************************************************************
 * RESPONSIVIDADE DO LOGO
 *************************************************************/
@media (max-width: 1024px) {
    .logo-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .header-logo {
        top: 1.5rem;
    }
    
    .logo-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        top: 1rem;
    }
    
    .logo-img {
        height: 200px;
    }
}


.header-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--amarelo);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-content {
    text-align: center;
    z-index: 5;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--branco);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-title .highlight {
    display: block;
    color: var(--amarelo);
    font-size: 5.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão CTA */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--amarelo);
    color: var(--preto);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    animation: fadeInUp 1.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    transform: scaleX(1);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.cta-btn.yellow {
    background: var(--amarelo);
    color: var(--preto);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Seta de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--amarelo);
    border-bottom: 3px solid var(--amarelo);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(15px); }
}

/*************************************************************
 * SEÇÃO SOBRE
 *************************************************************/
.section-sobre {
    padding: 8rem 0;
    background: var(--branco);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--preto);
    margin-bottom: 1rem;
}

.section-title.white {
    color: var(--branco);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--amarelo);
    margin-bottom: 2rem;
}

.divider.center {
    margin: 0 auto 3rem;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
}

.sobre-text p strong {
    color: var(--preto);
    font-weight: 600;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.sobre-image img:hover {
    transform: scale(1.05);
}

/*************************************************************
 * SEÇÃO DIFERENCIAIS
 *************************************************************/
.section-diferenciais {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--preto) 0%, #2d2d2d 100%);
    position: relative;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    border-color: var(--amarelo);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.diferencial-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 1rem;
}

.diferencial-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/*************************************************************
 * SEÇÃO AVALIAÇÕES DO GOOGLE
 *************************************************************/
.section-avaliacoes {
    padding: 8rem 0;
    background: var(--cinza-claro);
}

.avaliacoes-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*************************************************************
 * CABEÇALHO GOOGLE (NOTA GERAL + TOTAL)
 *************************************************************/
.google-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.google-header-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    background: var(--branco);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 4px solid var(--amarelo); /* Destaque amarelo */
}

.google-header-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
    border-color: var(--amarelo-escuro);
}

.google-header-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.google-header-item:hover img {
    transform: scale(1.02);
}

/* Badge "Destaque" (opcional) */
.google-header::before {
    content: '⭐ Avaliação Geral';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amarelo);
    color: var(--preto);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

.google-header {
    position: relative;
    padding-top: 30px; /* Espaço para o badge */
}




/*************************************************************
 * GRID DE AVALIAÇÕES (IMAGENS HORIZONTAIS)
 *************************************************************/
.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 2 colunas para imagens horizontais */
    gap: 2rem;
    margin-bottom: 3rem;
}

.avaliacao-item {
    position: relative;
    overflow: hidden;
    
    border-radius: 15px;
    background: var(--branco);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    
}



.avaliacao-item img {
    width: 100%;    
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


/* Overlay com ícone de zoom */
.avaliacao-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}



/*************************************************************
 * BOTÃO GOOGLE REVIEWS
 *************************************************************/
.avaliacoes-cta {
    text-align: center;
    margin-top: 3rem;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    background: var(--branco);
    color: var(--preto);
    border: 3px solid #4285F4;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.2);
}

.google-reviews-btn:hover {
    background: #4285F4;
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
}

.google-icon {
    width: 28px;
    height: 28px;
}

/*************************************************************
 * RESPONSIVIDADE
 *************************************************************/
@media (max-width: 1024px) {
    .avaliacoes-grid {
        grid-template-columns: 1fr; /* 1 coluna em tablet */
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-avaliacoes {
        padding: 6rem 0;
    }
    
    .avaliacoes-grid {
        gap: 1.5rem;
    }
    
    
    
    .overlay-icon {
        font-size: 3rem;
    }
    
    .google-reviews-btn {
        font-size: 0.95rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .avaliacoes-grid {
        gap: 1rem;
    }
    
    .avaliacao-item {
        border-radius: 10px;
    }
    
    .overlay-icon {
        font-size: 2.5rem;
    }
    
    .google-reviews-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .google-icon {
        width: 24px;
        height: 24px;
    }
}

/*************************************************************
 * SEÇÃO CTA COM VÍDEO DE FUNDO
 *************************************************************/
.section-cta {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vídeo de fundo */
.cta-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

/* Overlay escuro sobre o vídeo */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* Escurece 70% */
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Efeito de vinheta nas bordas */
.section-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    z-index: 0;
    pointer-events: none;
}

/* Garante que o conteúdo fique acima do vídeo */
.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--branco);
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Sombra para legibilidade */
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/*************************************************************
 * BOTÃO CTA (já existente, mantém os estilos)
 *************************************************************/
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--amarelo);
    color: var(--preto);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    transform: scaleX(1);
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.cta-btn.yellow {
    background: var(--amarelo);
    color: var(--preto);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/*************************************************************
 * RESPONSIVIDADE CTA
 *************************************************************/
@media (max-width: 768px) {
    .section-cta {
        padding: 6rem 0;
        min-height: 50vh;
    }
    
    .cta-video-bg {
        object-position: center; /* Ajusta foco do vídeo em mobile */
    }
    
    .cta-overlay {
        background: rgba(0, 0, 0, 0.75); /* Mais escuro em mobile */
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .section-cta {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.8rem;
    }
}


/*************************************************************
 * FOOTER
 *************************************************************/
.footer {
    background: var(--preto);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--amarelo);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--branco);
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*************************************************************
 * RESPONSIVIDADE
 *************************************************************/
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-title .highlight { font-size: 4rem; }
    .sobre-content { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }    
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-title .highlight { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .cta-btn { font-size: 1rem; padding: 1rem 2rem; }
}

@media (max-width: 480px) {
    .header-logo h2 { font-size: 1.4rem; }
    .hero-title { font-size: 2rem; }
    .hero-title .highlight { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .container { padding: 0 1rem; }
}

/*************************************************************
 * VÍDEO DE FUNDO NO HEADER
 *************************************************************/
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

/* Overlay escuro sobre o vídeo (ajuste a opacidade conforme necessário) */
.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* Escurece 60% do vídeo */
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
    z-index: -1;
}
/*************************************************************
 * SEÇÃO GALERIA ESTILO INSTAGRAM
 *************************************************************/
.section-galeria {
    padding: 8rem 0;
    background: var(--branco);
}

.galeria-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/*************************************************************
 * FILTROS DE CATEGORIA
 *************************************************************/
.galeria-filtros {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filtro-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--preto);
    background: transparent;
    color: var(--preto);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filtro-btn:hover {
    background: var(--preto);
    color: var(--branco);
    transform: translateY(-2px);
}

.filtro-btn.active {
    background: var(--amarelo);
    border-color: var(--amarelo);
    color: var(--preto);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/*************************************************************
 * GRID ESTILO INSTAGRAM (3 colunas → responsivo)
 *************************************************************/
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 3rem;
}

.galeria-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    background: var(--cinza-claro);
    transition: all 0.3s ease;
}

.galeria-item.hide {
    display: none;
}

.galeria-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

/* Overlay com ícone (foto/vídeo) */
.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/*************************************************************
 * BOTÃO CARREGAR MAIS
 *************************************************************/
.galeria-loadmore {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border: 3px solid var(--amarelo);
    background: transparent;
    color: var(--preto);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.load-more-btn:hover {
    background: var(--amarelo);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/*************************************************************
 * LIGHTBOX ESTILO INSTAGRAM (FULLSCREEN)
 *************************************************************/
.lightbox {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

/* Botão Fechar */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--branco);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 100002;
}

.lightbox-close svg {
    width: 35px;
    height: 35px;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--amarelo);
}

/* Navegação (Setas) */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--branco);
    cursor: pointer;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 100002;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--amarelo);
}

.lightbox-nav svg {
    width: 30px;
    height: 30px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Conteúdo (Imagem ou Vídeo) */
.lightbox-content {
    max-width: 100%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxImg,
#lightboxVideo {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Info (Contador) */
.lightbox-info {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--branco);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    z-index: 100002;
}

.lightbox-counter {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/*************************************************************
 * RESPONSIVIDADE DA GALERIA
 *************************************************************/
@media (max-width: 1024px) {
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .galeria-filtros {
        gap: 0.7rem;
    }
    
    .filtro-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.3rem;
    }
    
    .overlay-icon {
        font-size: 2.5rem;
    }
    
    .lightbox-nav {
        padding: 1rem 0.7rem;
    }
    
    .lightbox-nav svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .galeria-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-nav {
        padding: 0.7rem 0.5rem;
    }
    
    .lightbox-info {
        bottom: 10px;
        font-size: 0.9rem;
    }
}

/*************************************************************
 * SEÇÃO GALERIA DE VÍDEOS (com vídeo como thumbnail)
 *************************************************************/
.section-videos {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--preto) 0%, #2d2d2d 100%);
    position: relative;
}

.videos-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de vídeos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    border-color: var(--amarelo);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

/* Thumbnail com vídeo de fundo */
.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

/* Vídeo preview (autoplay muted) */
.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-item:hover .video-preview {
    transform: scale(1.08);
}

/* Overlay com play button */
.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-item:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Botão de play */
.play-button {
    width: 70px;
    height: 70px;
    background: var(--amarelo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.video-item:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

.play-button svg {
    width: 30px;
    height: 30px;
    color: var(--preto);
    margin-left: 4px;
}

/* Informações do vídeo */
.video-info {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-duration {
    font-size: 0.9rem;
    color: var(--amarelo);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-duration::before {
    content: '⏱️';
}

/*************************************************************
 * RESPONSIVIDADE DOS VÍDEOS
 *************************************************************/
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 25px;
        height: 25px;
    }
    
    .video-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        gap: 1rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button svg {
        width: 20px;
        height: 20px;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-title {
        font-size: 0.95rem;
    }
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    animation: buttonPulse 2s ease-in-out infinite;
    /* ... resto dos estilos ... */
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover .btn-arrow {
    animation: none; /* Para a pulsação no hover */
    background: var(--amarelo);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
}
/*************************************************************
 * SEÇÃO REDES SOCIAIS
 *************************************************************/
.section-social {
    padding: 8rem 0;
    background: var(--cinza-claro);
    position: relative;
}

.social-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/*************************************************************
 * GRID DE REDES SOCIAIS
 *************************************************************/
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

/*************************************************************
 * CARDS DE REDES SOCIAIS
 *************************************************************/
.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--branco);
    border-radius: 20px;
    text-decoration: none;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Instagram - Gradiente */
.social-card.instagram {
    border-color: transparent;
}

.social-card.instagram:hover {
    border-color: #E1306C;
    box-shadow: 0 20px 50px rgba(225, 48, 108, 0.3);
}

/* Facebook - Azul */
.social-card.facebook {
    border-color: transparent;
}

.social-card.facebook:hover {
    border-color: #1877F2;
    box-shadow: 0 20px 50px rgba(24, 119, 242, 0.3);
}

/*************************************************************
 * ÍCONES DAS REDES SOCIAIS
 *************************************************************/
.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.social-icon svg {
    width: 35px;
    height: 35px;
}

/* Instagram Icon */
.instagram .social-icon {
    background: linear-gradient(135deg, #F58529, #E1306C, #C13584, #833AB4);
    color: var(--branco);
}

.instagram:hover .social-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.5);
}

/* Facebook Icon */
.facebook .social-icon {
    background: #1877F2;
    color: var(--branco);
}

.facebook:hover .social-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

/*************************************************************
 * INFORMAÇÕES DA REDE SOCIAL
 *************************************************************/
.social-info {
    flex: 1;
}

.social-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--preto);
    margin: 0 0 0.3rem 0;
}

.social-handle {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

/* Instagram handle */
.instagram .social-handle {
    background: linear-gradient(135deg, #F58529, #E1306C, #C13584);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Facebook handle */
.facebook .social-handle {
    color: #1877F2;
}

.social-description {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    margin: 0;
}

/*************************************************************
 * SETA DO CARD
 *************************************************************/
.social-arrow {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.social-arrow svg {
    width: 100%;
    height: 100%;
    stroke: var(--cinza-medio);
}

.social-card:hover .social-arrow {
    transform: translateX(10px);
}

.instagram:hover .social-arrow svg {
    stroke: #E1306C;
}

.facebook:hover .social-arrow svg {
    stroke: #1877F2;
}

/*************************************************************
 * CHAMADA FINAL (HASHTAGS)
 *************************************************************/
.social-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid var(--amarelo);
}

.social-hashtag {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--preto);
    margin: 0 0 0.5rem 0;
}

.social-follow {
    font-size: 1rem;
    color: var(--cinza-medio);
    margin: 0;
}

/*************************************************************
 * RESPONSIVIDADE
 *************************************************************/
@media (max-width: 768px) {
    .section-social {
        padding: 6rem 0;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 2rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .social-name {
        font-size: 1.3rem;
    }
    
    .social-handle {
        font-size: 0.95rem;
    }
    
    .social-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .social-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .social-name {
        font-size: 1.2rem;
    }
    
    .social-hashtag {
        font-size: 1rem;
    }
    
    .social-follow {
        font-size: 0.9rem;
    }
}
/*************************************************************
 * BOTÃO FLUTUANTE WHATSAPP
 *************************************************************/
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

/* Animação de pulsação */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Ícone do WhatsApp */
.whatsapp-float-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

/* Texto "Fale Conosco" (aparece no hover) */
.whatsapp-float-text {
    position: absolute;
    right: 75px;
    background: var(--preto);
    color: var(--branco);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Efeito hover */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-float:hover .whatsapp-float-icon {
    transform: rotate(15deg) scale(1.1);
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
    transform: translateX(0);
}

/* Efeito de clique */
.whatsapp-float:active {
    transform: scale(0.95);
}

/*************************************************************
 * RESPONSIVIDADE DO BOTÃO FLUTUANTE
 *************************************************************/
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Esconde o texto em mobile (só mostra o ícone) */
    .whatsapp-float-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float-icon {
        width: 28px;
        height: 28px;
    }
}
