/* Base Styles & Variables */
:root {
    --bg-primary: #FAF9F6;
    --bg-secondary: #F4F1EA;
    --text-main: #2C2A29;
    --text-light: #68635F;
    --accent: #CD7F32; /* Bronze / Copper */
    --accent-hover: #b06828;
    --dark: #1A1918;
    --border: rgba(44, 42, 41, 0.08);
    --brown: #6b5c3e; /* texto quente sobre fundos areia/bege */

    /* Escala de raio */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-pill: 999px;

    --font-sans: 'Poppins', sans-serif;
    --font-serif: 'Bebas Neue', sans-serif; /* display / títulos de impacto */
    --font-goudy: 'Sorts Mill Goudy', 'Goudy Old Style', Georgia, serif; /* serifada — escritura, citações e acentos */
    
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 100%; /* base 16px — respeita a preferência do usuário; títulos escalam via clamp() */
}

/* Compensa a navbar fixa ao navegar por âncoras */
section[id], #cultos { scroll-margin-top: 5.5rem; }

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-main);
    letter-spacing: 1px;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Skip Link (acessibilidade) */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 10000;
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 0;
    font-family: var(--font-sans);
    font-weight: 500;
}
.skip-link:focus {
    left: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Foco visível global */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .content-reveal, .reveal-text, .reveal-fade { opacity: 1 !important; transform: none !important; }
}

/* Loader */
.loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--dark);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    /* Rede de segurança: se o JS falhar/não rodar, o loader some sozinho */
    animation: loaderSafety 0.6s ease 3s forwards;
}
@keyframes loaderSafety {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.loader-logo {
    width: min(75vw, 26rem);
    height: auto;
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 2rem; border-radius: var(--r-pill);
    font-family: var(--font-sans); font-weight: 500; font-size: 0.95rem;
    transition: var(--transition-fast); border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(205, 127, 50, 0.3); }

.btn-outline.light { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline.light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-primary.small { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-primary.large, .btn-outline.large { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* Ícones nos botões */
.btn-primary, .btn-outline { gap: 0.5em; }
.btn-icon {
    width: 1em; height: 1em; flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}
.btn-icon--left { width: 1.15em; height: 1.15em; }
.btn-primary:hover .btn-icon:not(.btn-icon--left),
.btn-outline:hover .btn-icon:not(.btn-icon--left) { transform: translateX(4px); }
/* ícone oração — não desliza, pulsa levemente */
button.btn-primary:hover .btn-icon { transform: scale(1.15); }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 1.5rem 0; z-index: 100; transition: all var(--transition-slow);
}
.navbar.scrolled {
    background: rgba(26, 25, 24, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 3.1rem; width: auto; object-fit: contain; transition: var(--transition-fast); }
.navbar.scrolled .nav-logo { height: 2.7rem; }

.nav-links { display: flex; gap: clamp(1.25rem, 2.1vw, 2.5rem); }
.nav-links a { color: #fff; font-size: clamp(0.85rem, 0.8vw, 0.95rem); font-weight: 400; position: relative; }
.nav-btn.btn-primary { font-size: clamp(0.85rem, 0.8vw, 0.95rem); padding: clamp(0.6rem, 0.84vw, 0.8rem) clamp(1.3rem, 2.1vw, 2rem); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--accent); transition: width var(--transition-fast);
}
.nav-links a:hover::after { width: 100%; }

.mobile-menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; }
.nav-cta-mobile { display: none; }

@media (max-width: 768px) {
    /* Painel: desliza + fade (sem animar max-height, que trava) */
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--dark); flex-direction: column; gap: 1rem;
        padding: 2rem;
        box-shadow: 0 18px 30px -18px rgba(0,0,0,0.5);
        opacity: 0; visibility: hidden; pointer-events: none;
        transform: translateY(-14px);
        transition:
            opacity 0.28s ease,
            transform 0.32s cubic-bezier(0.25, 1, 0.5, 1),
            visibility 0s linear 0.32s;
    }
    .nav-links.active {
        opacity: 1; visibility: visible; pointer-events: auto;
        transform: translateY(0);
        transition:
            opacity 0.28s ease,
            transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
    }
    /* Links entram em cascata quando o painel abre */
    .nav-links > a {
        opacity: 0; transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .nav-links.active > a { opacity: 1; transform: translateY(0); }
    .nav-links.active > a:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.active > a:nth-child(2) { transition-delay: 0.09s; }
    .nav-links.active > a:nth-child(3) { transition-delay: 0.13s; }
    .nav-links.active > a:nth-child(4) { transition-delay: 0.17s; }
    .nav-links.active > a:nth-child(5) { transition-delay: 0.21s; }
    .nav-links.active > a:nth-child(6) { transition-delay: 0.25s; }
    .nav-links.active > a:nth-child(7) { transition-delay: 0.29s; }
    .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
    /* Sanduíche vira "X" suavemente */
    .mobile-menu-btn path {
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease;
        transform-box: fill-box; transform-origin: center;
    }
    .mobile-menu-btn[aria-expanded="true"] path:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .mobile-menu-btn[aria-expanded="true"] path:nth-child(2) { opacity: 0; }
    .mobile-menu-btn[aria-expanded="true"] path:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .nav-cta-mobile {
        display: inline-flex; align-self: flex-start; margin-top: 0.5rem;
        background: var(--accent); color: #fff;
        padding: 0.7rem 1.5rem; border-radius: var(--r-pill);
        font-weight: 500; font-size: 0.95rem;
    }
    .nav-cta-mobile::after { content: none; }
}

/* Hero Section */
.hero {
    position: relative; height: 100vh; height: 100svh; min-height: 43.75rem;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    background: var(--dark) center / cover no-repeat fixed;
    background-image: url('../img/Congregacao.webp');
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(120% 95% at 50% 30%, rgba(205,127,50,0.16) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26,25,24,0.80) 0%, rgba(26,25,24,0.85) 45%, rgba(26,25,24,0.96) 100%);
}
/* Hero proporcional: escala com a largura da tela (vw), calibrado p/ 1900px = referência */
.hero-content { position: relative; z-index: 10; max-width: clamp(20rem, 42.1vw, 50rem); padding-inline: 1rem; }
.hero-title { font-size: clamp(2.75rem, 6vw, 6.5rem); color: #fff; margin-bottom: clamp(0.75rem, 1.26vw, 1.5rem); text-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.hero-pretitle {
    display: block;
    font-family: var(--font-goudy);
    font-style: italic; font-weight: 400;
    text-transform: none; letter-spacing: 0;
    color: #EAC9A0;
    font-size: clamp(1.15rem, 1.7vw, 2rem);
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
/* Slogan — linha delicada entre o título e o subtítulo */
.hero-slogan {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    font-family: var(--font-goudy); font-style: italic;
    font-size: clamp(1.05rem, 1.35vw, 1.5rem); line-height: 1.2;
    color: #EAC9A0; margin: 0 auto clamp(1rem, 1.5vw, 1.75rem);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-slogan-line {
    width: clamp(1.75rem, 3.5vw, 3rem); height: 1px; flex-shrink: 0;
    background: rgba(234,201,160,0.45);
}
.hero-subtitle { font-size: clamp(1rem, 1.01vw, 1.2rem); color: rgba(255,255,255,0.8); margin: 0 auto clamp(1.5rem, 2.1vw, 2.5rem); max-width: clamp(18rem, 31.6vw, 37.5rem); }
.hero-actions { display: flex; justify-content: center; gap: clamp(0.75rem, 1.26vw, 1.5rem); }
.hero-actions .btn-primary, .hero-actions .btn-outline { font-size: clamp(0.85rem, 0.8vw, 0.95rem); padding: clamp(0.6rem, 0.84vw, 0.8rem) clamp(1.3rem, 2.1vw, 2rem); }

.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 10;
}
.scroll-text { color: var(--accent); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
.scroll-line { width: 1px; height: 3.125rem; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.scroll-line::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
    background: var(--accent); animation: scrollDrop 2s infinite ease-in-out;
}
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* Section Globals */
.section-header { margin-bottom: 4rem; text-align: center; }
.section-title { font-size: clamp(2rem, 2.95vw, 3.5rem); margin-bottom: 1rem; }
.section-desc { font-size: 1.1rem; color: var(--text-light); }
.section-desc.centered { max-width: 37.5rem; margin: 0 auto; }

/* Cycle Section */
.cycle-section { padding: 8rem 0; background: var(--bg-primary); }
/* descrição do Conecte-se em ~2 linhas, balanceadas */
.cycle-section .section-desc.centered { max-width: 47rem; text-wrap: balance; }
.cycle-journey { position: relative; max-width: 74rem; margin: 4rem auto 0; padding: 2rem 0; }

.journey-line {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
    background: var(--border); transform: translateX(-50%); z-index: 1;
}
.journey-line::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%;
    height: var(--growth-height, 0%); background: var(--accent);
    transition: height 0.1s linear; z-index: 2;
}

.journey-step {
    position: relative; display: flex; justify-content: flex-end;
    width: 50%; padding-right: 3rem; margin-bottom: 3rem; z-index: 10;
}
.journey-step.right {
    margin-left: 50%; justify-content: flex-start; padding-right: 0; padding-left: 3rem;
}

.step-point {
    position: absolute; top: 40px; right: -6px; width: 12px; height: 12px;
    border-radius: 50%; background: var(--bg-primary); border: 2px solid var(--accent);
    z-index: 3; transition: all var(--transition-fast);
}
.journey-step.right .step-point { left: -6px; right: auto; }

/* Connection Line */
.journey-step::before {
    content: ''; position: absolute; top: 45px; right: 0; width: 3rem; height: 1px;
    background: var(--border);
}
.journey-step.right::before { left: 0; right: auto; }

/* The Card */
.step-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.25rem;
    display: flex; gap: 1.75rem;
    width: 100%; max-width: 39rem;
    box-shadow: 0 6px 22px rgba(0,0,0,0.04);
    transition: all var(--transition-slow);
}
.step-card:hover {
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: rgba(205, 127, 50, 0.28);
}
.journey-step:hover .step-point {
    background: var(--accent); box-shadow: 0 0 0 6px rgba(205, 127, 50, 0.15);
}

.step-logo {
    width: 10.5rem; height: 10.5rem; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--transition-fast);
}
.step-card:hover .step-logo { transform: scale(1.05); }
/* caixa quadrada fixa + contain = todos os emblemas no mesmo tamanho visual */
.step-logo img { width: 100%; height: 100%; object-fit: contain; }

.step-info { flex-grow: 1; display: flex; flex-direction: column; }
.step-category { display: inline-block; margin-bottom: 0.3rem; font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; }
.step-title { font-size: 2.5rem; color: var(--dark); margin: 0 0 0.5rem; }
.step-desc { font-size: 0.95rem; color: var(--text-main); font-weight: 500; }

/* Conteúdo do card sempre visível (propósito + CTA) — sem depender de hover */
.step-expanded-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; flex-grow: 1;
}
.step-expanded-content p { font-size: 0.9rem; color: var(--text-main); margin-bottom: 1.5rem; }
/* CTA padronizado: largura cheia, fixado no rodapé do card */
.step-expanded-content .btn-primary { width: 100%; margin-top: auto; }

/* Nameplate dos pastores (Sobre) */
.pastores-nameplate {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 2.5rem 1.5rem 1.1rem;
    background: linear-gradient(to top, rgba(20,18,16,0.85), transparent);
    color: #fff; text-align: left;
}
.pastores-nameplate strong { display: block; font-family: var(--font-goudy); font-size: 1.4rem; font-weight: 400; line-height: 1.1; }
.pastores-nameplate span { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: #F0C79A; }

/* Ponte Jornada -> Ciclo */
.journey-bridge { margin-top: 2rem; }
.journey-bridge-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 600; color: var(--accent); font-size: 1rem;
    transition: gap var(--transition-fast);
}
.journey-bridge-link svg { width: 18px; height: 18px; }
.journey-bridge-link:hover { gap: 0.85rem; }

/* Breakpoint intermediário (tablet) */
@media (max-width: 992px) {
    .prayer-decoration { opacity: 0.05; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

/* About Section (Uma Jornada de Crescimento) */
.about-section { padding: 8rem 0; background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text .section-title { font-size: clamp(2.25rem, 3.37vw, 4rem); margin-bottom: 1.5rem; }
.about-text .section-desc { margin-bottom: 1.5rem; }
.about-visual { display: flex; justify-content: center; }
/* Ilustração solta (fundo transparente), sem moldura de card */
.about-illustration { width: 100%; max-width: 26rem; height: auto; }

/* Story / Sobre Nos Section */
.story-section {
    background: var(--bg-primary);
    overflow: hidden;
}

.story-header {
    padding: 6rem 0 2rem;
    text-align: center;
}
.story-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.story-main-title {
    font-size: 5rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1;
}

/* Story Blocks */
.story-block {
    padding: 5rem 0;
}
.story-block-alt {
    background: var(--bg-secondary);
}
.story-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.story-block-alt .story-block-inner {
    direction: rtl;
}
.story-block-alt .story-block-inner > * {
    direction: ltr;
}

.story-paragraph {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.story-paragraph:last-child { margin-bottom: 0; }
.story-paragraph.story-highlight {
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 500;
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent);
}
.story-paragraph em { font-style: italic; color: var(--accent); }
.story-paragraph strong { color: var(--text-main); font-weight: 700; }

/* Image wrap */
.story-image-wrap {
    position: relative;
}
.story-img-placeholder {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-secondary);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
}
.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-img-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(205, 127, 50, 0.35);
}

/* Divider */
.story-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 80rem;
    margin: 0 auto;
}
.story-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}
.story-divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.story-divider-icon svg { width: 22px; height: 22px; }

/* Localização / Nossos Cultos — mapa + informações */
.cultos-section { padding: 6rem 0; background: #D9D1BF; }
.cultos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

/* Mapa */
.cultos-map {
    border-radius: 20px; overflow: hidden;
    aspect-ratio: 4 / 3; background: #e8e3d8;
    box-shadow: 0 24px 50px -22px rgba(0,0,0,0.35);
}
.cultos-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Informações */
.cultos-eyebrow {
    display: inline-block; margin-bottom: 1.1rem;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--brown);
}
.cultos-title {
    font-size: clamp(2.5rem, 4.4vw, 4rem); line-height: 1.04; letter-spacing: -1px;
    color: var(--text-main); margin: 0 0 2rem;
}
.cultos-title em {
    font-family: var(--font-sans); font-style: normal; font-weight: 500;
    color: var(--accent); letter-spacing: -1px; text-transform: none;
}

.cultos-details { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin: 0 0 2.25rem; }
.cultos-details li { display: flex; align-items: flex-start; gap: 1rem; }
.cultos-detail-icon {
    flex-shrink: 0; width: 2.85rem; height: 2.85rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(205,127,50,0.12); border: 1px solid rgba(205,127,50,0.3); color: var(--accent);
}
.cultos-detail-icon svg { width: 18px; height: 18px; }
.cultos-detail-text { display: flex; flex-direction: column; gap: 0.2rem; }
.cultos-detail-text strong { font-size: 1.05rem; font-weight: 600; color: var(--text-main); }
.cultos-detail-text span { font-size: 0.95rem; line-height: 1.5; color: var(--text-main); }

.cultos-btn { align-self: flex-start; }

@media (max-width: 860px) {
    .cultos-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .cultos-section { padding: 4rem 0; }
    .cultos-btn { width: 100%; max-width: 20rem; }
}

/* Mensagens / Palavras (YouTube) */
.messages-section { padding: 8rem 0; background: var(--bg-primary); }

/* Cabeçalho */
.messages-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1.5rem 2rem; flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.messages-subscribe { margin-bottom: 0.5rem; }
.messages-subscribe .btn-icon--left { transition: transform var(--transition-fast); }
.messages-subscribe:hover .btn-icon--left { transform: scale(1.12); }
.messages-eyebrow {
    display: inline-block;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 1.25rem;
}
.messages-title {
    font-family: var(--font-sans); font-weight: 500;
    font-size: clamp(2.75rem, 5.2vw, 5rem); line-height: 1.02; letter-spacing: -1px;
    color: var(--text-main); margin: 0;
}
.messages-title em {
    font-family: var(--font-sans); font-style: normal; font-weight: 500;
    color: var(--accent); letter-spacing: -1px;
}

/* Grid: destaque + lista */
.messages-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 3.5rem; align-items: start; }

/* Vídeo em destaque */
.message-feature {
    position: relative; display: block; overflow: hidden;
    border-radius: 20px; background: #1a1816;
    aspect-ratio: 16 / 11;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.message-feature:hover { transform: translateY(-4px); box-shadow: 0 30px 62px -22px rgba(0,0,0,0.5); }
.message-feature-thumb {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.8s ease;
}
.message-feature:hover .message-feature-thumb { transform: scale(1.05); }

/* Botão play */
.message-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 3; pointer-events: none;
    width: 4.75rem; height: 4.75rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}
.message-play svg { width: 1.7rem; height: 1.7rem; margin-left: 0.18rem; }
.message-feature:hover .message-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(205,127,50,0.85); border-color: rgba(205,127,50,0.9);
}

/* Info do vídeo em destaque (título visível sobre a thumb) */
.message-feature::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, transparent 45%, rgba(12,9,7,0.88) 100%);
}
.message-feature-info {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    display: flex; flex-direction: column; gap: 0.3rem;
    padding: 1.75rem; color: #fff;
}
.message-feature-date {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}
.message-feature-title {
    font-family: var(--font-sans); font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.3;
}
.message-feature-by { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* Lista de mensagens */
.messages-list { display: flex; flex-direction: column; }
.messages-all {
    align-self: flex-end; display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}
.messages-all svg { width: 14px; height: 14px; color: var(--accent); }
.messages-all:hover { color: var(--accent); }

.message-row {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem;
    padding: 1.4rem 0; border-top: 1px solid var(--border);
    transition: padding-left var(--transition-fast);
}
.message-row:last-child { border-bottom: 1px solid var(--border); }
.message-date {
    font-size: 0.82rem; color: var(--accent); white-space: nowrap; min-width: 3rem;
}
.message-date strong { font-weight: 700; color: var(--text-main); }
.message-row-info { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.message-row-title {
    font-size: 1.1rem; font-weight: 600; color: var(--text-main); line-height: 1.3;
    transition: color var(--transition-fast);
}
.message-row-by { font-size: 0.82rem; color: var(--text-light); }
.message-row-arrow {
    width: 18px; height: 18px; color: var(--text-light); flex-shrink: 0;
    transition: color var(--transition-fast), transform var(--transition-fast);
}
.message-row:hover { padding-left: 0.5rem; }
.message-row:hover .message-row-title { color: var(--accent); }
.message-row:hover .message-row-arrow { color: var(--accent); transform: translate(2px, -2px); }

@media (max-width: 992px) {
    .messages-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .messages-all { align-self: flex-start; }
}
@media (max-width: 768px) {
    .messages-section { padding: 5rem 0; }
    .messages-head { margin-bottom: 2.5rem; }
    .message-feature { aspect-ratio: 16 / 10; }
    .message-play { width: 4rem; height: 4rem; }
    .message-play svg { width: 1.5rem; height: 1.5rem; }
    .message-feature-info { padding: 1.25rem; }
}

/* Prayer Section (Pedidos de Oração) */
.prayer-section {
    position: relative;
    padding: 8rem 0;
    background: #EBD7AE;
    overflow: hidden;
}
.prayer-section .section-title { color: var(--dark); }
.prayer-section .section-desc { color: var(--brown); }

.prayer-decoration {
    position: absolute;
    top: 50%; left: -9%; right: auto;
    transform: translateY(-50%);
    width: 32rem; max-width: 40%;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
}
.prayer-decoration img { width: 100%; height: auto; display: block; }

.prayer-section .container { position: relative; z-index: 2; }

.prayer-layout {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr;
    gap: 2.5rem; align-items: center;
}
/* Duas colunas só no desktop — evita o overflow horizontal no mobile */
@media (min-width: 993px) {
    .prayer-layout { grid-template-columns: 0.92fr 1.08fr; gap: 4rem; }
}
.prayer-intro .section-title { text-align: left; margin-bottom: 0.5rem; }
.prayer-quote {
    font-family: var(--font-goudy); font-style: italic;
    font-size: 1.5rem; line-height: 1.45; color: var(--dark);
    border-left: 3px solid var(--accent); padding-left: 1.25rem;
    margin: 1.5rem 0;
}
.prayer-quote cite {
    display: block; margin-top: 0.6rem; font-style: normal;
    font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
    color: var(--accent); letter-spacing: 0.5px;
}
.prayer-lead { font-size: 1.05rem; color: var(--brown); margin: 0; }
.prayer-form {
    margin: 0;
    display: flex; flex-direction: column; gap: 1.25rem;
    background: #fff; padding: 2.5rem; border-radius: 18px;
    box-shadow: 0 28px 64px rgba(60, 40, 15, 0.16);
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-row label .req { color: var(--accent); margin-left: 0.15rem; }
.prayer-note {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.9rem; color: var(--brown); margin: 0;
}
.prayer-note svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.form-row label {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.4;
}
.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(44, 42, 41, 0.12);
    border-radius: 8px;
    background: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}
.form-row textarea { resize: vertical; min-height: 7.5rem; }
.form-row input::placeholder { color: #b5ad9f; }
.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(205, 127, 50, 0.15);
}
.prayer-form .form-actions { margin-top: 0.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Honeypot anti-spam: escondido de usuários, visível para bots */
.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Feedback de envio do formulário */
.form-feedback { font-size: 0.9rem; font-weight: 500; margin: 0; }
.form-feedback.is-error { color: #b3261e; }
.form-feedback.is-success { color: #1b7a3d; }

/* Campo inválido (cor + borda, reforçado por texto no feedback) */
.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
    border-color: #b3261e;
    box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
}

@media (max-width: 768px) {
    .prayer-section { padding: 5rem 0; }
    .prayer-decoration { top: 7rem; left: -16%; right: auto; transform: none; width: 22rem; max-width: 62%; opacity: 0.06; }
    .form-row { gap: 0.5rem; align-items: start; }
    .prayer-form { margin-top: 0; }
    .prayer-form .form-actions .btn-primary { width: 100%; }
}

/* Give / Contribua Section */
.give-section { position: relative; padding: 8rem 0; background: var(--dark); color: #fff; overflow: hidden; }
.cta-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(70% 60% at 50% 16%, rgba(255,255,255,0.14) 0%, transparent 60%),
        radial-gradient(90% 75% at 50% 115%, rgba(0,0,0,0.30) 0%, transparent 60%);
}
.give-header { text-align: center; margin-bottom: 3.5rem; max-width: 46rem; margin-left: auto; margin-right: auto; }
.give-eyebrow {
    display: inline-block; margin-bottom: 0.75rem;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent);
}
.give-title { font-size: clamp(2.5rem, 4.21vw, 4.5rem); color: #fff; margin: 0 0 0.85rem; }
.give-tagline {
    font-family: var(--font-goudy); font-style: italic;
    font-size: 1.45rem; font-weight: 400; letter-spacing: 0;
    color: #E6B07A; margin-bottom: 1.1rem;
}
.give-support { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 40rem; margin: 0 auto; text-wrap: balance; }

/* Card central */
.give-card {
    position: relative; overflow: hidden;
    max-width: 56rem; margin: 0 auto;
    background: linear-gradient(155deg, #211e1a 0%, #141210 100%);
    border: 1px solid rgba(205,127,50,0.22);
    border-radius: 24px;
    box-shadow: 0 40px 90px -36px rgba(0,0,0,0.7);
    padding: clamp(1.75rem, 4vw, 3.5rem);
}
.give-card-glow {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: radial-gradient(58% 48% at 50% 0%, rgba(205,127,50,0.16) 0%, transparent 70%);
}
.give-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: auto 1fr;
    gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}

/* QR Code */
.give-qr { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.give-qr-frame {
    position: relative;
    background: #fff; padding: 0.85rem; border-radius: 16px; line-height: 0;
    box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}
/* Cantoneiras decorativas (topo-esquerda e base-direita) */
.give-qr-frame::before,
.give-qr-frame::after {
    content: ''; position: absolute; width: 1.6rem; height: 1.6rem;
    border: 2px solid var(--accent); pointer-events: none;
}
.give-qr-frame::before {
    top: -0.5rem; left: -0.5rem;
    border-right: none; border-bottom: none; border-top-left-radius: 6px;
}
.give-qr-frame::after {
    bottom: -0.5rem; right: -0.5rem;
    border-left: none; border-top: none; border-bottom-right-radius: 6px;
}
.give-qr-frame img { width: 15rem; height: 15rem; display: block; border-radius: 6px; }
.give-qr figcaption {
    font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.6); max-width: 16rem;
}

/* Dados */
.give-info { min-width: 0; }
.give-info-title { font-size: 1.6rem; color: #fff; margin-bottom: 1.1rem; text-transform: none; }
.give-key {
    display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem 0.85rem;
    margin-bottom: 1.5rem; padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.give-key-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    color: var(--accent); border: 1px solid rgba(205,127,50,0.4);
    padding: 0.2rem 0.6rem; border-radius: 999px;
}
.give-key strong { font-size: 1.15rem; color: #fff; word-break: break-all; }
.give-copy {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; cursor: pointer;
    background: rgba(205,127,50,0.15); color: var(--accent);
    border: 1px solid rgba(205,127,50,0.4); border-radius: var(--r-pill);
    padding: 0.45rem 0.95rem; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500;
    transition: all var(--transition-fast);
}
.give-key .give-copy { margin-left: auto; }
.give-copy:hover { background: var(--accent); color: #fff; }
.give-copy.copied { background: #2e7d32; border-color: #2e7d32; color: #fff; }
.give-copy i, .give-copy svg { width: 16px; height: 16px; }
.give-bank {
    list-style: none; margin-bottom: 1.75rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.give-bank li {
    display: flex; flex-direction: column; gap: 0.25rem;
    padding: 0.7rem 0.85rem;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.give-bank li span {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
    color: var(--accent);
}
.give-bank li strong { font-size: 1.05rem; color: #fff; font-weight: 600; }
.give-copy--paste {
    width: 100%; margin: 0; padding: 0.85rem 1rem; font-size: 0.95rem;
    background: var(--accent); color: #fff; border-color: var(--accent);
}
.give-copy--paste:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }

/* Rodapé do card */
.give-card-footer {
    position: relative; z-index: 1;
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.give-thanks {
    font-family: var(--font-goudy); font-style: italic;
    font-size: 1.3rem; color: #F0C79A; margin: 0;
}

/* Agenda / Eventos Section — lista */
.agenda-section { padding: 8rem 0; background: var(--bg-secondary); }

/* Cabeçalho (mesma linguagem da seção Mensagens) */
.agenda-head {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: end;
    margin-bottom: 3.5rem;
}
.agenda-eyebrow {
    display: inline-block; margin-bottom: 1.1rem;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--text-light);
}
.agenda-title {
    font-family: var(--font-sans); font-weight: 500;
    font-size: clamp(2.5rem, 4.6vw, 4.5rem); line-height: 1.04; letter-spacing: -1px;
    color: var(--text-main); margin: 0;
}
.agenda-title em {
    font-family: var(--font-sans); font-style: normal; font-weight: 500;
    color: var(--accent); letter-spacing: -1px;
}
.agenda-intro { margin: 0 0 0.4rem; font-size: 1rem; line-height: 1.7; color: var(--text-light); max-width: 30rem; }

/* Lista de eventos */
.agenda-list { border-top: 1px solid var(--border); }
.agenda-row {
    display: grid; grid-template-columns: 8rem minmax(0, 1fr) 14rem 3rem;
    align-items: center; gap: 2rem;
    padding: 1.75rem 0.5rem; border-bottom: 1px solid var(--border);
    color: inherit; transition: padding-left var(--transition-fast), background var(--transition-fast);
}
.agenda-row[hidden] { display: none; }
.agenda-row:hover { padding-left: 1rem; background: rgba(205, 127, 50, 0.035); }

.agenda-date { display: flex; flex-direction: column; gap: 0.2rem; line-height: 1.1; }
.agenda-date strong { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400; letter-spacing: 1px; color: var(--text-main); }
.agenda-date span { font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); }

.agenda-info { min-width: 0; }
.agenda-row-title {
    display: flex; align-items: center; flex-wrap: wrap; gap: 0.65rem;
    font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; color: var(--text-main); line-height: 1.2;
    transition: color var(--transition-fast);
}
.agenda-row:hover .agenda-row-title { color: var(--accent); }
.agenda-row-sub { display: block; margin-top: 0.3rem; font-size: 0.9rem; color: var(--text-light); }
.agenda-badge {
    padding: 0.22rem 0.6rem; border-radius: 999px;
    font-size: 0.64rem; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase;
    color: var(--accent); background: rgba(205, 127, 50, 0.1); border: 1px solid rgba(205, 127, 50, 0.3);
}

.agenda-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.agenda-meta span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-light); white-space: nowrap; }
.agenda-meta svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.agenda-arrow {
    justify-self: end;
    width: 2.85rem; height: 2.85rem; border-radius: 50%;
    border: 1px solid var(--border); color: var(--text-main);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.agenda-arrow svg { width: 18px; height: 18px; }
.agenda-row:hover .agenda-arrow { background: var(--accent); border-color: var(--accent); color: #fff; transform: translate(2px, -2px); }

.agenda-empty { text-align: center; color: var(--text-light); font-size: 1.1rem; max-width: 32rem; margin: 2.5rem auto 0; }

/* Convite (CTA final) */
.invite-section { padding: 8rem 0; background: var(--bg-primary); }
.invite-eyebrow {
    display: block; margin-bottom: 2.5rem;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--text-light);
}
.invite-body { text-align: center; }
.invite-title {
    font-family: var(--font-sans); font-weight: 500;
    font-size: clamp(3rem, 7vw, 6.5rem); line-height: 1.02; letter-spacing: -1.5px;
    color: var(--text-main); margin: 0 auto; max-width: 18ch;
}
.invite-title em {
    font-family: var(--font-sans); font-style: normal; font-weight: 500;
    color: var(--accent); letter-spacing: -1.5px;
}
.invite-text {
    max-width: 34rem; margin: 1.75rem auto 0;
    font-size: 1.05rem; line-height: 1.7; color: var(--text-light);
    text-wrap: balance;
}
.invite-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.75rem; }
.invite-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    border-radius: 999px; padding: 0.95rem 2rem;
    font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
    border: 1px solid transparent; cursor: pointer; transition: var(--transition-fast);
}
.invite-btn svg { width: 1em; height: 1em; transition: transform var(--transition-fast); }
.invite-btn--solid { background: var(--dark); color: #fff; }
.invite-btn--solid:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(26, 25, 24, 0.28); }
.invite-btn--solid:hover svg { transform: translateX(3px); }
.invite-btn--outline { background: transparent; color: var(--text-main); border-color: rgba(44, 42, 41, 0.25); }
.invite-btn--outline:hover { border-color: var(--text-main); background: rgba(44, 42, 41, 0.04); }

@media (max-width: 768px) {
    .invite-section { padding: 6rem 0; }
    .invite-eyebrow { margin-bottom: 1.75rem; }
    .invite-actions { flex-direction: column; align-items: center; }
    .invite-btn { width: 100%; max-width: 20rem; }
}

/* Footer */
.footer { background: var(--bg-primary); padding: 5rem 0 2rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; align-items: start; }
.footer-logo { height: 4rem; width: auto; margin-bottom: 1.5rem; margin-top: -6px; }
.footer-mission { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1.5rem; max-width: 18.75rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(44, 42, 41, 0.3);
    display: flex; align-items: center; justify-content: center; color: var(--text-main);
    background: rgba(44, 42, 41, 0.06);
    transition: all var(--transition-fast);
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 4px 10px rgba(205, 127, 50, 0.2); }
.social-links svg { width: 20px; height: 20px; fill: var(--text-main); transition: fill var(--transition-fast); }
.social-links a:hover svg { fill: #fff; }

.footer-links h4, .footer-contact h4 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1.5rem; }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: var(--text-light); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--text-light); font-size: 0.95rem; line-height: 1.5; }
.footer-contact i, .footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
    flex-wrap: wrap; text-align: center;
    padding-top: 2rem; border-top: 1px solid var(--border);
    font-size: 0.85rem; color: var(--text-light);
}
.footer-bottom > p { margin: 0; }
.footer-credit {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--dark); color: rgba(255,255,255,0.85);
    padding: 0.55rem 1.1rem; border-radius: 999px;
    font-size: 0.8rem; text-decoration: none; white-space: nowrap;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.footer-credit:hover { background: #000; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.footer-credit span { color: rgba(255,255,255,0.7); }
.footer-credit img { height: 1rem; width: auto; display: block; }

/* Global Animations */
.content-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.content-reveal.visible { opacity: 1; transform: translateY(0); }
.content-reveal.delay-1 { transition-delay: 0.2s; }

.reveal-text { opacity: 0; transform: translateY(20px); transition: all 0.8s ease; }
.reveal-text.visible { opacity: 1; transform: translateY(0); }
.reveal-fade { opacity: 0; transition: opacity 1s ease; }
.reveal-fade.visible { opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
    .hero { background-attachment: scroll; } /* parallax fixo trava no iOS — rola normal no mobile */
    .hero-title { font-size: 4rem; }
    .hero-actions { flex-direction: column; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }

    /* Story Section Mobile */
    .story-main-title { font-size: 3.5rem; }
    .story-block-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .story-block-alt .story-block-inner { direction: ltr; }
    .story-img-badge { top: 0.5rem; left: 0.5rem; font-size: 1rem; padding: 0.5rem 1rem; }

    .cycle-journey { margin-top: 2rem; }
    .journey-line { left: 20px; }
    .journey-step, .journey-step.right {
        width: 100%; margin-left: 0; padding-left: 3.5rem; padding-right: 0; justify-content: flex-start;
    }
    .step-point, .journey-step.right .step-point { left: 14px; right: auto; }
    .journey-step::before, .journey-step.right::before { left: 20px; width: 1.5rem; }
    
    .step-card { flex-direction: column; gap: 1rem; padding: 1.5rem; }
    .step-logo { width: 9rem; height: 9rem; padding: 0; }

    .give-section { padding: 5rem 0; }
    .give-grid { grid-template-columns: 1fr; gap: 2rem; }
    .give-info { text-align: center; min-width: 0; }
    .give-info-title { text-align: center; }
    .give-key { justify-content: center; }
    .give-key .give-copy { margin-left: 0; }
    .give-key strong { font-size: 1.05rem; }
    /* Botão Pix: evita deixar "cola)" sozinho — quebra limpa em 2 linhas */
    .give-copy--paste { align-items: center; }
    .give-copy--paste .give-copy-text { line-height: 1.3; }
    .give-copy--paste .nowrap { white-space: nowrap; }
    .give-bank { gap: 0.5rem; }
    .give-bank li { align-items: center; text-align: center; padding: 0.6rem 0.4rem; }
    .give-bank li strong { font-size: 0.95rem; }

    .agenda-section { padding: 5rem 0; }
    .agenda-head { grid-template-columns: 1fr; gap: 1.25rem; align-items: start; margin-bottom: 2.5rem; }
    .agenda-row {
        grid-template-columns: 1fr auto;
        grid-template-areas: "date arrow" "info arrow" "meta arrow";
        gap: 0.35rem 1rem; align-items: center; padding: 1.5rem 0.25rem;
    }
    .agenda-row:hover { padding-left: 0.25rem; }
    .agenda-date { grid-area: date; flex-direction: row; align-items: baseline; gap: 0.5rem; }
    .agenda-date strong { font-size: 1.5rem; }
    .agenda-info { grid-area: info; }
    .agenda-meta { grid-area: meta; flex-direction: row; flex-wrap: wrap; gap: 0.35rem 1rem; margin-top: 0.4rem; }
    .agenda-arrow { grid-area: arrow; align-self: center; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Aviso de cookies (LGPD) */
.cookie-notice[hidden] { display: none; }
.cookie-notice {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; flex-wrap: wrap;
    background: rgba(26, 25, 24, 0.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: #fff; padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.cookie-notice p { margin: 0; font-size: 0.9rem; max-width: 45rem; color: rgba(255, 255, 255, 0.85); }
.cookie-notice a { color: var(--accent); text-decoration: underline; }
.cookie-notice .btn-primary { flex-shrink: 0; }
@media (max-width: 768px) {
    .cookie-notice { bottom: 90px; flex-direction: column; gap: 0.75rem; text-align: center; padding: 1rem; }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all var(--transition-fast);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #FFF;
    stroke-width: 2;
    transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.4);
    background-color: #20b858;
    animation: none;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Banner de transmissão ao vivo */
.live-banner[hidden] { display: none; }
.live-banner {
    position: fixed; bottom: 30px; left: 30px; z-index: 1400;
    width: 320px; max-width: calc(100vw - 40px);
}
.live-banner-card {
    position: relative; display: block; overflow: hidden;
    border-radius: var(--r-lg); background: #1a1816;
    aspect-ratio: 16 / 10;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.live-banner-card:hover { transform: translateY(-4px); box-shadow: 0 26px 56px -20px rgba(0,0,0,0.55); }
.live-banner-thumb {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.8s ease;
}
.live-banner-card:hover .live-banner-thumb { transform: scale(1.05); }
.live-banner-card::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, transparent 40%, rgba(12,9,7,0.9) 100%);
}
.live-banner-badge {
    position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: #E4363B; color: #fff; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 0.3rem 0.6rem; border-radius: var(--r-pill);
}
.live-banner-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #fff;
    animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}
.live-banner-info {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    display: flex; flex-direction: column; gap: 0.3rem;
    padding: 1rem; color: #fff;
}
.live-banner-title {
    font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; line-height: 1.3;
}
.live-banner-cta { font-size: 0.78rem; font-weight: 600; color: var(--accent); }
.live-banner-close {
    position: absolute; top: -10px; right: -10px; z-index: 3;
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--dark); color: #fff; border: 2px solid var(--bg-primary);
    cursor: pointer; transition: background var(--transition-fast), transform var(--transition-fast);
}
.live-banner-close:hover { background: var(--accent); transform: scale(1.08); }

@media (max-width: 768px) {
    .live-banner { bottom: 90px; left: 20px; width: calc(100vw - 40px); }
}

/* ==========================================================================
   TÍTULOS — Poppins, "Primeira letra maiúscula, demais minúsculas".
   Vale para todos os títulos (h2–h6); o herói (h1) permanece em Bebas Neue.
   ========================================================================== */
h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: lowercase;
}
h2::first-letter, h3::first-letter, h4::first-letter,
h5::first-letter, h6::first-letter {
    text-transform: uppercase;
}
/* títulos do rodapé: Poppins, com o casing escrito (Navegação / Contato e Local) */
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-sans);
    text-transform: none;
}
