/* --- 1. Variáveis e Configurações Globais --- */
:root {
    --color-primary: #8DD7B1;    /* Verde Menta */
    --color-secondary: #2F4538;  /* Verde Floresta Escuro */
    --color-dark: #1F2923;       /* Quase preto */
    --color-light: #F9F9F9;      /* Off-white */
    --color-text: #333333;       /* Texto padrão */
    --color-text-light: #ececec; /* Texto claro */
    
    --font-main: 'Poppins', sans-serif;
    
    --container-width: 1200px;
    --border-radius: 12px;
}

/* --- 2. Reset e Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* O SEGREDO: Corta tudo que estiver fora da largura da tela */
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-light);
    color: var(--color-text);
    line-height: 1.6;

    
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* --- 3. Utilitários --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light { background-color: #fff; }
.bg-dark { background-color: var(--color-secondary); color: var(--color-light); }

.text-center { text-align: center; margin-bottom: 50px; }
.text-white { color: white !important; }
.text-primary { color: var(--color-primary); }
.w-100 { width: 100%; }
.mt-4 { margin-top: 1.5rem; }

/* Tipografia Básica */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.bg-dark h2 { color: var(--color-primary); }

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* --- 4. Botões e Componentes --- */

/* Botão Padrão (Outline) */
.btn-outline {
    border: 2px solid var(--color-light);
    color: var(--color-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

/* Botão Outline Light (Transparente com borda clara) */
.btn-outline-light {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--color-light);
    color: var(--color-light);
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* Botão Outline Dark (Para fundos claros) */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    border: 2px solid var(--color-secondary); 
    color: var(--color-secondary);
    border-radius: 50px;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-outline-dark:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(47, 69, 56, 0.2);
}

.btn-outline-dark i {
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-outline-dark:hover i {
    transform: translateX(5px);
}

/* Botão Hero (Banner Principal) */
.btn-hero {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--color-primary); 
    color: var(--color-light);
    border-radius: 50px;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-hero:hover {
    background-color: var(--color-primary);
    color: var(--color-dark);
    box-shadow: 0 0 15px rgba(141, 215, 177, 0.4);
    transform: translateY(-3px);
}

/* Botão YouTube */
.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF0000;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

/* --- 5. Header e Navegação --- */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

/* Estado "Rolado" (Glassmorphism) */
header.scrolled {
    background-color: rgba(22, 78, 54, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50px;
}

/* Menu Desktop */
.desktop-menu {
    display: none; /* Mobile First: Escondido por padrão */
}

.desktop-menu ul {
    display: flex;
    gap: 30px;
}

.desktop-menu a {
    color: var(--color-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s;
}

.desktop-menu a:hover::after { width: 100%; }

/* Botão destaque no menu */
.desktop-menu a.btn-primary {
    padding: 8px 20px;
    background-color: var(--color-primary);
    color: var(--color-dark);
    border-radius: 50px;
}
.desktop-menu a.btn-primary::after { display: none; }
.desktop-menu a.btn-primary:hover {
    background-color: #7AC7A1;
    transform: translateY(-2px);
}

/* Ícone Mobile (Hambúrguer) */
.mobile-menu-icon {
    font-size: 2rem;
    color: var(--color-light);
    cursor: pointer;
    display: block;
}

/* --- 6. Menu Mobile (Drawer) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: var(--color-secondary);
    z-index: 1002;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.mobile-menu.active { right: 0; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-header img { width: 100px; border-radius: 25px; }

#closeMenuBtn {
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 1.2rem;
    color: var(--color-light);
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-link.highlight {
    color: var(--color-primary);
    font-weight: 700;
    border-bottom: none;
}

.mobile-menu-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.mobile-menu-footer p {
    color: var(--color-light);
    opacity: 0.7;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icons a:hover { color: white; }

/* --- 7. Hero Section (Slider) --- */
.hero {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
    transform: scale(1.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(31,41,35,0.7), rgba(31,41,35,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    color: var(--color-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.hero h1, .hero h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--color-light);
    font-weight: 100;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero p, .hero-verse {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-verse {
    font-size: 1.8rem;
    margin-top: -0.5rem;
}

/* Controles do Carrossel */
.carousel-control {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 3rem;
    color: var(--color-light);
    opacity: 0.5;
    cursor: pointer;
    z-index: 10;
    padding: 100px;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    opacity: 1;
    color: var(--color-primary);
}

.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-light);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    opacity: 1;
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* --- 8. Seção Quem Somos --- */
.about-text h2 {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 30px;
}

.text-block { margin-bottom: 25px; }
.text-block h3 {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-weight: 600;
}
.text-block p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-image {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.about-image img {
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-frame {
    position: absolute;
    bottom: 0; left: 0;
    width: 60%; height: 60%;
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
    z-index: 1;
    opacity: 0.3;
}

.floating-card {
    position: absolute;
    bottom: 40px; right: -20px;
    background-color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.about-buttons .btn-outline-dark {
    padding: 10px 25px;
    font-size: 0.95rem;
}

/* --- 9. Seção Notícias --- */
.news-grid {
    display: flex;             /* Mudamos de Grid para Flex */
    flex-wrap: wrap;           /* Permite quebrar linha quando não couber mais */
    justify-content: center !important;   /* O SEGREDO: Centraliza os itens no meio da tela */
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    
    /* Controle de Tamanho para Centralização */
    flex: 0 1 350px; /* Largura ideal: 350px. Não cresce além disso, mas pode encolher. */
    width: 100%;     /* Garante que funcione bem no mobile */
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.news-card:hover .news-image img { transform: scale(1.05); }

.date-badge {
    position: absolute;
    top: 15px; left: 15px;
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-secondary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    font-weight: 500;
}

.date-badge strong {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.news-content {
    padding: 25px;
    text-align: left;
}

.category {
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--color-secondary);
    font-weight: 600;
}

.news-content p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--color-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--color-primary);
    gap: 10px;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* --- 10. Seção Destaque --- */
.highlight-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.highlight-image {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.highlight-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotate(-2deg); 
    transition: 0.3s ease;
}

.highlight-image:hover img { transform: rotate(0deg); }

.circle-decoration {
    position: absolute;
    top: -20px; right: -20px;
    width: 100%; height: 100%;
    background-color: var(--color-primary);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.2;
    transform: rotate(4deg);
}

.highlight-content {
    color: var(--color-light);
    text-align: center;
}

.highlight-tag {
    display: inline-block;
    background-color: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.highlight-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlight-quote {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 10px 10px 0;
    margin-bottom: 30px;
    text-align: left;
}

.highlight-quote i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
}

.highlight-quote p {
    font-style: italic;
    font-size: 1rem;
    margin: 0;
    color: #e0e0e0;
}

/* --- 11. Seção Depoimentos --- */
.testimonials-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    scrollbar-width: none;
}
.testimonials-wrapper::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 300px;
    flex: 1;
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.quote-icon i {
    font-size: 2.5rem;
    color: var(--color-primary);
    opacity: 0.9;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #888;
}

/* --- 12. Seção Pôr do Sol --- */
.sunset-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #1a251e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.sunset-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sunset-left-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sunset-text h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.sunset-text .highlight-tag {
    border-color: rgba(255,255,255,0.3);
    color: var(--color-primary);
}

.sunset-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.sunset-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    align-self: center; 
    width: 100%;
    max-width: 400px;
}

.sunset-card i { font-size: 3rem; color: #FFD700; margin-bottom: 5px; }
.time-display { display: flex; flex-direction: column; }
.time-display .label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
.time-display strong { font-size: 4rem; font-weight: 700; line-height: 1; color: white; }
.location-label { font-size: 0.8rem; opacity: 0.5; margin-top: 10px; }

/* --- 13. Seção Programação --- */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.schedule-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.day-label {
    position: absolute;
    top: 0; left: 0; width: 100%;
    background-color: #f4f4f4;
    color: #666;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 0;
    letter-spacing: 1px;
}

.schedule-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin: 30px 0 20px;
}

.schedule-card h3 {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.schedule-card .time {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.schedule-card p {
    font-size: 0.95rem;
    color: #888;
}

.schedule-card.featured {
    background-color: var(--color-secondary);
    border: none;
}

.schedule-card.featured .day-label {
    background-color: rgba(255,255,255,0.1);
    color: var(--color-primary);
}

.schedule-card.featured h3, 
.schedule-card.featured p { color: rgba(255,255,255,0.8); }
.schedule-card.featured .time { color: white; }
.schedule-card.featured .schedule-icon { color: var(--color-primary); }

/* --- 14. Seção Localização --- */
.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-info h2 {
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.location-info p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-box {
    background-color: rgba(141, 215, 177, 0.2);
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.address-item strong {
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 5px;
}

.address-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.location-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 5px solid white;
}

.location-map iframe {
    width: 100%; height: 100%;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.location-map:hover iframe { filter: grayscale(0%); }

/* --- 15. Seção Culto Online (YouTube) --- */
.youtube-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../img/biblia.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.youtube-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(31, 41, 35, 0.8) 100%);
    z-index: 1;
}

.youtube-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.youtube-content .yt-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.text-red { color: #FF0000; font-size: 2rem; }

.youtube-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.youtube-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
    margin-bottom: 40px;
}

.yt-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    display: inline-flex;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
}

.stat-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.stat-divider {
    width: 1px; height: 40px;
    background-color: rgba(255,255,255,0.2);
}

.youtube-video {
    position: relative;
    width: 100%;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.live-badge {
    position: absolute;
    top: -15px; right: 20px;
    background-color: white;
    color: var(--color-dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 3;
}

.pulse {
    width: 10px; height: 10px;
    background-color: #FF0000;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

/* --- 16. Seção Contato --- */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-text h2 {
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.contact-text p {
    color: #666;
    margin-bottom: 30px;
}

.prayer-box {
    background-color: rgba(141, 215, 177, 0.15);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--color-primary);
}

.prayer-box i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.prayer-box span {
    font-style: italic;
    font-weight: 600;
    color: var(--color-secondary);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(141, 215, 177, 0.2);
}

/* --- 17. Seção FAQ --- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s;
}

.faq-item[open] {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--color-primary);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
    transition: 0.3s;
    color: var(--color-primary);
}

.faq-item[open] summary i { transform: rotate(180deg); }

.faq-content {
    padding: 0 20px 20px 20px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
    margin-top: -5px;
    padding-top: 15px;
}

/* --- 18. Footer --- */
.main-footer {
    background-color: #1a251e;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-top { display: grid; gap: 40px; }

.footer-brand img {
    width: 140px;
    margin-bottom: 15px;
    opacity: 0.9;
    border-radius: 25px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.6;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: #aaa; transition: 0.3s; }

.footer-links ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.5;
}

.dev-credit i { color: #e25555; }

/* --- 19. Páginas Internas (Ex: História) --- */
.page-header {
    background-image: url('../img/33anos.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: white;
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 {
    font-size: 3rem;
    color: white;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    opacity: 0.9;
    font-style: italic;
}

.history-video-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.documentary-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 4px solid white;
}

.documentary-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.history-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.history-block { position: relative; padding-left: 20px; }

.history-block h2 {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    border-left: 4px solid var(--color-primary);
    padding-left: 15px;
}

.history-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* --- 20. Animações e Keyframes --- */
@keyframes sun-glow {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 0px rgba(255, 215, 0, 0));
        color: #FFD700;
    }
    50% {
        transform: scale(1.1) rotate(15deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
        color: #fff7cc;
    }
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 0px rgba(255, 215, 0, 0));
        color: #FFD700;
    }
}

.sunset-card i.ph-sun-horizon {
    animation: sun-glow 4s infinite ease-in-out;
    display: inline-block;
}

@keyframes pulse-play {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* --- 21. Media Queries e Responsividade --- */

/* Tablets e pequenos laptops */
@media (max-width: 768px) {
    .carousel-control { font-size: 2rem; padding: 1px;}
    .about-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .about-buttons a {
        text-align: center;
        justify-content: center;
    }
}

/* Desktop e Telas Grandes */
@media (min-width: 768px) {
    .hero h1, .hero h2 { font-size: 4.5rem; }
    .hero-verse { font-size: 2.5rem; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    /* Menu e Layout Geral */
    .mobile-menu-icon {
        display: block; /* Mantém visível para híbrido */
        margin-left: 30px;
        padding-left: 30px;
        border-left: 1px solid rgba(255,255,255,0.2);
        height: 30px;
        display: flex;
        align-items: center;
    }

    .desktop-menu { display: block; }

    /* Layouts específicos */
    .about-grid {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
    .about-text, .about-image { flex: 1; }
    .about-text h2 { font-size: 2.5rem; }

    .highlight-wrapper {
        flex-direction: row;
        gap: 80px;
        align-items: center;
    }
    .highlight-image { flex: 1; }
    .highlight-content { 
        flex: 1; 
        text-align: left;
    }
    .highlight-content h2 { font-size: 3rem; line-height: 1.1; }

    .testimonials-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
    }
    .testimonial-card { min-width: auto; }

    .sunset-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 60px;
    }
    .sunset-left-col { flex: 3; }
    .sunset-card { 
        flex: 2;
        align-self: stretch;
        justify-content: center;
    }
    .sunset-text { align-items: flex-start; }

    .contact-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
    .contact-text, .contact-form { flex: 1; }

    .location-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
    .location-info { flex: 1; }
    .location-map { flex: 1; height: 500px; }

    .youtube-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
    .youtube-content, .youtube-video { flex: 1; }

    .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Seção de Eventos (Agenda) --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
    min-height: 160px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

/* Caixa de Data (Esquerda) */
.event-date-box {
    background-color: var(--color-light);
    min-width: 70px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-primary);
    z-index: 2; /* Fica acima do fundo */
}

.evt-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.evt-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
}

/* Detalhes do Evento */
.event-details {
    z-index: 2; /* Fica acima do fundo */
    flex: 1;
}

.event-details h3 {
    font-size: 1.2rem;
    margin: 5px 0;
    color: var(--color-dark);
}

.evt-time, .evt-location {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.evt-time i, .evt-location i { color: var(--color-primary); }

.evt-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
}

/* Imagem de Fundo (Opcional) */
/* Se o evento tiver imagem, ela aparece bem clarinha no fundo do card */
.event-bg {
    position: absolute;
    top: 0; right: 0;
    width: 60%; /* Ocupa só o lado direito */
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Bem sutil */
    mask-image: linear-gradient(to left, black, transparent); /* Degrade */
    -webkit-mask-image: linear-gradient(to left, black, transparent);
    z-index: 1;
}

/* --- Botão Flutuante Aniversariantes --- */
.floating-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(141, 215, 177, 0.6);
    cursor: pointer;
    z-index: 990; /* Acima de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(-10deg);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.btn-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff5252;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* --- Modal Aniversariantes --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: 0.4s;
    max-height: 80vh; /* Altura máxima */
    display: flex;
    flex-direction: column;
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: var(--color-primary);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
}

.modal-header h3 { margin: 0; font-size: 1.2rem; }
.modal-header button { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-dark); }

.niver-list {
    padding: 20px;
    overflow-y: auto; /* Scroll se tiver muitos */
}

.niver-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.niver-item:last-child { border-bottom: none; }

.niver-img img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.avatar-placeholder {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #eee;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.niver-info h4 { margin: 0; font-size: 1rem; color: var(--color-secondary); }
.niver-day { font-size: 0.8rem; color: var(--color-primary); font-weight: 700; text-transform: uppercase; }

.modal-footer-msg {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    font-size: 0.85rem;
    color: #666;
}
/* --- Botão de Login (Ícone Cadeado na Navbar) --- */
.login-icon-btn {
    font-size: 1.6rem; /* Tamanho confortável para clicar */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light); /* Branco */
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-left: 15px; /* Espaço entre o botão Contato e o Cadeado */
    padding: 5px; /* Aumenta a área de clique */
}

/* Remove a linha de sublinhado padrão do menu */
.desktop-menu a.login-icon-btn::after {
    display: none; 
}

.login-icon-btn:hover {
    opacity: 1;
    color: var(--color-primary); /* Fica verde ao passar o mouse */
    transform: scale(1.1) rotate(5deg); /* Efeito sutil de movimento */
}

/* --- Ajuste de Responsividade do Cadeado --- */

/* No Mobile (telas menores que 900px) */
@media (max-width: 900px) {
    /* Esconde o cadeado do topo no celular */
    /* (Porque no celular ele já aparece como link dentro do menu lateral) */
    .mobile-menu-icon .login-icon-btn {
        display: none !important;
    }
    
    /* Garante que o ícone de lista (hambúrguer) apareça */
    .mobile-menu-icon .ph-list {
        display: block;
    }
}

.mobile-menu {
    position: fixed;
    top: 0; 
    right: -100%; /* Mantém fora da tela */
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: var(--color-secondary);
    z-index: 1002;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    
    /* --- CORREÇÃO DA ANIMAÇÃO --- */
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    visibility: hidden; /* Fica invisível enquanto fechado */
}

.mobile-menu.active { 
    right: 0; 
    visibility: visible; /* Torna visível apenas quando abrir */
}

/* --- Toast Notification (Personalizado) --- */
#toast-box {
    visibility: hidden; /* Escondido por padrão */
    min-width: 300px;
    background-color: #fff;
    color: #333;
    text-align: left;
    border-radius: 8px;
    padding: 20px;
    position: fixed;
    z-index: 10000; /* Fica acima de tudo */
    right: 30px;
    top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    
    /* Animação Inicial (Fora da tela) */
    transform: translateX(120%); 
    transition: transform 0.5s ease-in-out, visibility 0.5s;
    border-left: 5px solid #ccc; /* Cor padrão */
}

/* Quando estiver ativo */
#toast-box.show {
    visibility: visible;
    transform: translateX(0); /* Entra na tela */
}

/* Variação de Sucesso */
#toast-box.success {
    border-left-color: var(--color-primary); /* Verde do seu tema */
}
#toast-box.success i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* Variação de Erro */
#toast-box.error {
    border-left-color: #e74c3c; /* Vermelho */
}
#toast-box.error i {
    color: #e74c3c;
    font-size: 1.5rem;
}

/* Responsivo para celular */
@media (max-width: 600px) {
    #toast-box {
        width: 90%;
        right: 5%;
        left: 5%;
        top: 20px;
    }
}

/* --- Botão Flutuante AO VIVO --- */
#floating-live-btn {
    display: none; /* O JS vai mostrar na hora certa */
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    cursor: pointer;
    z-index: 9998; /* Fica abaixo do Modal, mas acima do site */
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: transform 0.3s;
    animation: slideInUp 0.5s ease-out;
}

#floating-live-btn:hover {
    transform: scale(1.05);
    background-color: #cc0000;
}

/* Animação de Pulso na bolinha */
.live-pulse {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes slideInUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- Estilos do Modal de Vídeo --- */
.video-modal-content {
    background: white;
    width: 90%;
    max-width: 800px; /* Maior que o modal de agenda */
    border-radius: 15px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal-header-video {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* Responsividade do Iframe (16:9) */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Página de Departamentos --- */

.dept-grid {
    display: grid;
    /* O SEGREDO: auto-fit tenta encaixar o máximo possível. 
       minmax(200px, 1fr) diz: "cada cartão tem no mínimo 200px". */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px 0;
    width: 100%;
}

.dept-card {
    background: white;
    border-radius: 15px;
    padding: 30px 15px; /* Reduzi um pouco o padding lateral */
    
    /* Centralização Interna */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    height: 100%; /* Garante altura igual para todos */
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.dept-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%; /* Redondo */
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 8px 15px rgba(47, 69, 56, 0.1);
    border: 4px solid #f9f9f9;
    background-color: white; /* Garante fundo branco se a img for png transparente */
}

.dept-card h3 {
    font-size: 1rem; /* Fonte levemente menor para não quebrar linha fácil */
    color: var(--color-secondary);
    margin: 0;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* Estilos do Modal de Departamento */
.director-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.director-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.director-info h4 {
    margin: 0;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.director-info span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* --- Ajuste Mobile --- */
@media (max-width: 768px) {
    .dept-grid {
        /* No celular, força 2 colunas */
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    
    .dept-logo {
        width: 80px;
        height: 80px;
    }
    
    .dept-card {
        padding: 20px 10px;
    }
}

/* --- Seção Versículo do Dia --- */
#verso-dia {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2a3d32 100%); /* Verde Escuro */
    color: white;
    padding: 40px 0; /* Altura reduzida */
    position: relative;
    text-align: center;
    border-bottom: 4px solid var(--color-primary); /* Detalhe verde claro */
}

.verse-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.verse-icon {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.8;
    margin-bottom: 5px;
}

.verse-text {
    font-family: 'Georgia', serif; /* Fonte serifada para dar ar bíblico/elegante */
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.verse-ref {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-top: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    #verso-dia {
        padding: 30px 20px;
    }
    .verse-text {
        font-size: 1.1rem;
    }
    .verse-icon {
        font-size: 1.5rem;
    }
}

/* --- Seção ORE+ BOSQUE --- */
.ore-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%); /* Fundo bem suave esverdeado */
    position: relative;
    overflow: hidden;
}

/* Círculo decorativo de fundo */
.ore-bg-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
}

.ore-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ore-logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.ore-highlight {
    color: var(--color-primary);
}

.ore-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.ore-feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #f0f0f0;
}

.ore-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.ore-icon {
    width: 50px;
    height: 50px;
    background: #e8f5e9;
    color: var(--color-secondary); /* Verde escuro */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ore-feature-card h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.ore-feature-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Botão Especial do Ore+ */
.btn-ore {
    background-color: var(--color-secondary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(47, 69, 56, 0.3);
}

.btn-ore:hover {
    background-color: var(--color-primary);
    transform: scale(1.05);
    color: var(--color-dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .ore-features-grid {
        grid-template-columns: 1fr; /* Um embaixo do outro no celular */
        gap: 15px;
    }
    .ore-logo-text {
        font-size: 2rem;
    }
}