/* === Estilos Essenciais === */
nevss {}
html { scroll-behavior: smooth; }
body { padding-top: 70px; background-color: #212529; /* background-image definido no header */ background-attachment: fixed; background-position: center center; background-repeat: no-repeat; background-size: cover; min-height: 100vh; font-family: 'Poppins', sans-serif; position: relative; overflow-x: hidden; color: #343a40; }
body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.82); /* Overlay mais escuro */ z-index: -1; }
.main-content { position: relative; z-index: 1; }
.text-shadow { text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); } /* Sombra padrão texto claro */

/* === Navbar === */
.navbar { padding-top: 0.8rem; padding-bottom: 0.8rem; }
.navbar.fixed-top { box-shadow: 0 3px 8px rgba(0,0,0,0.15); background-color: rgba(33, 37, 41, 0.95) !important; }
.navbar-brand img { max-height: 40px; vertical-align: middle; }
.navbar-dark .navbar-nav .nav-link { color: rgba(255,255,255,.85); padding: 0.6rem 1rem; transition: color 0.3s ease; font-size: 0.95rem; }
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active { color: #ffffff; }
.navbar-dark .navbar-nav .nav-link i { margin-right: 8px; width: 16px; text-align: center; }

/* === Classe Comum para Seções (Full Wide Transparente) === */
/* Aplicada a Hero, Aviso, Agenda, Institucional, Contato */




.page-section {
    padding: 50px 0px; /* Padding Vertical */
    margin: 0 !important; /* SEM Margem Vertical - Grudadas */
    background-color: rgba(255, 255, 255, 0.60) !important; /* <<< FUNDO BRANCO 60% TRANSPARENTE */
    color: #f0f0f0 !important; /* <<< COR PADRÃO TEXTO CLARO */
    border-radius: 0 !important; /* SEM Cantos Arredondados */
    width: 100%; box-sizing: border-box;
}
/* Container interno controla largura e padding lateral do CONTEÚDO */
.page-section .container {
     max-width: 1140px; /* Largura XL Padrão para conteúdo */
     width: 100%; padding-left: 15px; padding-right: 15px; margin-left: auto; margin-right: auto;
}
/* Títulos dentro das seções */
.page-section h2, .page-section h3 {
    color: #ffffff !important; /* <<< TÍTULOS BRANCOS */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Sombra p/ leitura */
    font-weight: 700; margin-bottom: 2.5rem !important;
    text-align: left !important; /* Alinhado à esquerda */
    font-size: 2.2rem; padding: 0;
}
.page-section h3 { font-size: 1.8rem; margin-bottom: 2rem !important; }
.page-section h2 i, .page-section h3 i { vertical-align: middle; margin-right: 10px; font-size: 0.9em; color: inherit !important; /* Herda cor branca */ }
/* Parágrafos e Listas dentro das seções */
.page-section p, .page-section li {
    color: #f0f0f0 !important; /* Cinza bem claro */
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
}
.page-section p.lead { color: #ffffff !important; font-weight: 400; } /* Lead mais destacado */
.page-section .text-muted { color: #adb5bd !important; text-shadow: 1px 1px 1px rgba(0,0,0,0.4); } /* Muted um pouco mais escuro */


/* === EXCEÇÕES E AJUSTES ESPECÍFICOS === */

/* Hero: Já tem texto branco, não precisa override, só garante fundo */
/* Hero: Garante fundo transparente e texto branco */
#hero {
    background-color: transparent !important; /* SOBRESCREVE o fundo do .page-section */
    color: #ffffff !important; /* Garante texto branco padrão */
}
/* Assegura que títulos e parágrafos dentro do Hero sejam brancos */
#hero h1, #hero p.lead, #hero p {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Mantém sombra para leitura */
}




/* Aviso Urgente: Mantém fundo vermelho mas texto branco */
#aviso-urgente { background-color: rgba(220, 53, 69, 0.85) !important; color: #fff !important; padding: 1rem 0; }
#aviso-urgente .container { max-width: 1140px; padding-left: 15px; padding-right: 15px; margin-left: auto; margin-right: auto; text-align: center; }
#aviso-urgente p { margin-bottom: 0; font-weight: 500; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); color: #fff !important; } #aviso-urgente i { margin-right: 10px; }

/* Agenda: REMOVE o fundo branco transparente padrão e ajusta título */
#agenda {
    background-color: transparent !important; /* SEM fundo de seção */
    color: #343a40 !important; /* Volta cor padrão escura para conteúdo INTERNO se necessário (cards resolvem) */
}
#agenda .container { max-width: 1320px; /* Container largo */ }
#agenda h2 { color: #ffffff !important; text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8) !important; font-size: 2.6rem; }
#agenda h2 i { color: #ffffff !important; }
#agenda p.lead { color: #f0f0f0 !important; text-shadow: 1px 1px 1px rgba(0,0,0,0.4); } /* Texto "nenhum evento" claro */

/* Cards de Evento (Fundo Branco Sólido sobre seção transparente) */
/* ESSENCIAL: Cards PRECISAM ter fundo sólido e texto escuro aqui */
.event-card { border: 1px solid #e9ecef; border-radius: 6px !important; box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important; transition: transform 0.25s ease, box-shadow 0.25s ease; background-color: #ffffff !important; /* FUNDO BRANCO CARD */ overflow: hidden; color: #343a40 !important; /* TEXTO ESCURO CARD */ display: flex; flex-direction: column; position: relative; height: 100%; text-shadow: none !important; }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 7px 20px rgba(0,0,0,0.08) !important; }
.event-card .card-img-top { aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px 6px 0 0 !important; border-bottom: 1px solid #f0f0f0; }
.event-card .card-body { padding: 1rem 1.1rem; display: flex; flex-direction: column; flex-grow: 1; text-shadow: none; text-align: center; }
.event-card .card-title { color: #212529; font-weight: 600; font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.3; }
.event-card .card-text { font-size: 0.88rem; margin-bottom: 0.4rem; color: #495057; }
.event-card .card-text i { margin-right: 6px; color: #0d6efd; width: 12px; text-align: center; }
.event-card .card-text.text-muted { color: #6c757d !important; } .event-card .card-text.text-muted i { color: #6c757d; }
.event-card .countdown { font-size: 0.8rem; font-weight: 500; padding: 4px 8px; border-radius: 4px; margin-top: 0.5rem; margin-bottom: 1rem !important; display: inline-block; background-color: #f8d7da; color: #842029; border: 1px solid #f5c2c7; text-shadow: none; }
.event-card .countdown.text-muted { background-color: #e9ecef; color: #6c757d; border-color: #dee2e6; font-weight: normal; }
.event-card .countdown i { color: inherit !important; margin-right: 4px; }
.event-card .mt-auto { margin-top: auto; padding-top: 0.75rem; }
.event-card .btn { font-size: 0.85rem; padding: 0.4rem 0.8rem; background-color: transparent; border-color: #0d6efd; color: #0d6efd; width: 100%; }
.event-card .btn:hover { background-color: #0d6efd; border-color: #0d6efd; color: #ffffff; }
.event-card .age-rating-tag { position: absolute; top: 8px; right: 8px; font-size: 0.75rem; font-weight: bold; padding: 3px 7px; border-radius: 4px; color: #fff; z-index: 2; line-height: 1; }
.event-card .age-rating-tag.rating-livre { background-color: #198754; } .event-card .age-rating-tag.rating-10 { background-color: #0dcaf0; } .event-card .age-rating-tag.rating-12 { background-color: #ffc107; color: #333; } .event-card .age-rating-tag.rating-14 { background-color: #fd7e14; } .event-card .age-rating-tag.rating-16 { background-color: #dc3545; } .event-card .age-rating-tag.rating-18 { background-color: #212529; } .event-card .age-rating-tag.rating-outro { background-color: #6c757d; }

/* Institucional (Título e Texto precisam ser claros) */
#institucional h2, #institucional h3 { color: #ffffff !important; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
#institucional h2 i, #institucional h3 i { color: #0dcaf0 !important; } /* Ciano para ícone */
#institucional p, #institucional li { color: #f0f0f0 !important; text-shadow: 1px 1px 1px rgba(0,0,0,0.4); }
#institucional .lead { color: #ffffff !important; }
#institucional img.img-fluid { display: block; margin: auto; border: none !important; box-shadow: none !important; max-width: 100%; height: auto; }

/* Galeria (Título claro) */
#galeria-institucional h3 { color: #ffffff !important; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
#galeria-institucional h3 i { color: #ffc107 !important; } /* Amarelo para ícone */
.gallery-item { background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.gallery-item img { border-radius: 5px; }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 6px 12px rgba(0,0,0,0.2); border-color: #fff;}
.gallery-item:hover img { opacity: 0.85; }

/* Contato (Título e Texto claros) */
.contato-section h2 { color: #ffffff !important; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.contato-section h2 i { color: #198754 !important; } /* Verde para ícone */
.contact-item { background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.contact-item:hover { background-color: rgba(255, 255, 255, 0.15); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.contact-item i.contact-icon { margin-bottom: 1.5rem; display: block; line-height: 1; font-size: 3.5rem; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); } /* Sombra no ícone */
.contact-item i.fa-whatsapp { color: #25D366; } .contact-item i.fa-envelope { color: #ffc107; }
.contact-item h5 { margin-bottom: 0.8rem; font-weight: 600; font-size: 1.2rem; color: #ffffff; text-shadow: 1px 1px 1px rgba(0,0,0,0.3); }
.contact-item p { font-size: 0.95rem; color: #e0e0e0; margin-bottom: 1.5rem; flex-grow: 1; text-shadow: 1px 1px 1px rgba(0,0,0,0.3); }
.contact-item .btn { font-size: 1rem; padding: 0.75rem 1.5rem; margin-top: auto; border-radius: 50px; }
.contact-item .btn.btn-success { /* Mantém cores */ }
.contact-item .btn.btn-warning { color: #333; /* Garante texto escuro no botão amarelo */ }
.contact-item .btn i { margin-right: 8px; }

/* === Rodapé === */
.site-footer { background-color: #111111; color: #cccccc !important; padding: 50px 0 30px 0; font-size: 0.9rem; margin-top: 0; border-top: 1px solid #333; }
.site-footer h5 { color: #ffffff; margin-bottom: 1rem; font-size: 1.1rem; font-weight: 500; }
.site-footer a { color: #cccccc !important; text-decoration: none; transition: color 0.3s ease; }
.site-footer a:hover { color: #0d6efd !important; }
.site-footer .footer-links li { margin-bottom: 12px; }
.site-footer .footer-links li a { display: inline-flex; align-items: center; }
.site-footer .footer-links li a i { margin-right: 10px; width: 18px; text-align: center; color: rgba(255,255,255,0.5) !important; transition: color 0.3s ease; }
.site-footer .footer-links li a:hover i { color: #0d6efd !important; }
.site-footer .social-icons a { background-color: #333; }
.site-footer hr { border-color: rgba(255,255,255,0.1); }
.site-footer .text-center small { color: #999; }

/* === Botões Fixos === */
.whatsapp-button, #scrollToTopBtn { position: fixed !important; right: 25px; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white !important; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); z-index: 1050; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; opacity: 0.95; }
.whatsapp-button { background-color: #25D366; bottom: 25px; font-size: 26px; }
#scrollToTopBtn { background-color: rgba(0, 0, 0, 0.7); bottom: 85px; font-size: 20px; display: none; }
.whatsapp-button:hover, #scrollToTopBtn:hover { opacity: 1; transform: scale(1.1); }
#scrollToTopBtn:hover { background-color: rgba(0, 0, 0, 0.9); } .whatsapp-button:hover { background-color: #1DA851; }
#scrollToTopBtn i, .whatsapp-button i { line-height: 1; font-size: inherit; color: white !important; }

/* === Modal === */
.modal-header { border-bottom: 1px solid #dee2e6; background-color: #f8f9fa; color: #343a40; }
.modal-header .modal-title { color: #343a40; }
.modal-footer { border-top: 1px solid #dee2e6; background-color: #f8f9fa; }
.modal-content { border: none; border-radius: 0.4rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.modal-body img { max-width: 100%; height: auto; max-height: 50vh; object-fit: contain; margin: 0 auto 1.5rem auto; display: block; border-radius: 4px; }
.modal-body strong { color: #333; } /* Destaca labels no modal */
.modal-body p { color: #555; } /* Texto normal no modal */
.modal-body h5 { color: #333; }

/* === Lightbox CSS === */
body.lb-disable-scrolling { overflow: hidden; }
.lightboxOverlay { z-index: 1060 !important; background-color: rgba(0,0,0,0.9) !important; }
.lightbox { z-index: 1061 !important; }
.lb-dataContainer { background-color: rgba(255,255,255,0.95) !important; border-radius: 0 0 5px 5px !important; }
.lb-data .lb-details { color: #333 !important; } .lb-data .lb-caption { color: #555 !important; } .lb-data .lb-number { color: #777 !important; }
.lb-nav a.lb-prev, .lb-nav a.lb-next { opacity: 0.7 !important; transition: opacity 0.2s ease; }
.lb-nav a.lb-prev:hover, .lb-nav a.lb-next:hover { opacity: 1 !important; }

/* Ícones Redes Sociais Maiores no Rodapé */
.site-footer .social-icons a.social-icon-link { /* Usei a classe que adicionei no último HTML */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px; /* << Aumentado de 38px */
    height: 45px; /* << Aumentado de 38px */
    border-radius: 50%;
    background-color: #333; /* Fundo escuro */
    color: #ffffff;
    margin: 5px 6px 0 0; /* Pouco mais de margem */
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.3rem; /* << Tamanho do ícone interno aumentado de 1rem */
    text-decoration: none; /* Garante sem sublinhado */
    line-height: 1; /* Para alinhar ícone corretamente */
}

.site-footer .social-icons a.social-icon-link:hover {
    background-color: #0d6efd;
    transform: translateY(-3px); /* Efeito hover um pouco maior */
}

/* Garante que o ícone interno use o tamanho definido */
.site-footer .social-icons a.social-icon-link i {
    font-size: inherit;
    line-height: 1;
}