/* ==========================================================================
   POMBAGIRAS.COM — PÁGINA DE DOAÇÃO & MANUTENÇÃO PERPÉTUA
   Design System: Fiery Dark Sacred Aesthetic, Glassmorphism & Micro-animations
   Tokens: Fraunces (Headings), Geist (UI/Body), Oxblood, Brass, Glowing Amber
   ========================================================================== */

:root {
    /* Color Palette */
    --preto-profundo: #050201;
    --preto-card: rgba(16, 10, 8, 0.85);
    --preto-card-hover: rgba(26, 16, 12, 0.95);
    --creme: #FAF6EE;
    --creme-suave: #D6CFBE;
    --creme-apagado: #A39B8B;
    --oxblood: #5E1A1A;
    --oxblood-profundo: #3A0D0D;
    --latao: #C59B27;
    --latao-brilho: #FFD56B;
    
    /* Fiery / Energy Elements */
    --laranja-fogo: #FF4500;
    --laranja-brilho: #FF6600;
    --laranja-dourado: #FF9900;
    --vermelho-gira: #A80C1E;
    
    /* Borders & Glass */
    --borda-vidro: rgba(255, 102, 0, 0.22);
    --borda-destaque: rgba(255, 153, 0, 0.55);
    --borda-dourada: rgba(197, 155, 39, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease-out;
    --glow-suave: 0 10px 30px -8px rgba(255, 69, 0, 0.25);
    --glow-forte: 0 16px 45px -5px rgba(255, 102, 0, 0.45);
    --glow-dourado: 0 12px 35px -6px rgba(197, 155, 39, 0.35);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--preto-profundo);
    background-image: 
        radial-gradient(circle at 12% 20%, rgba(128, 32, 0, 0.32) 0%, transparent 50%),
        radial-gradient(circle at 88% 35%, rgba(255, 102, 0, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(94, 26, 26, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 50% 110%, rgba(255, 69, 0, 0.15) 0%, transparent 65%);
    background-attachment: fixed;
    color: var(--creme);
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Cursor (Fine Pointers Only) */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    .custom-cursor {
        position: fixed;
        width: 34px;
        height: 34px;
        border: 1.5px solid rgba(255, 102, 0, 0.65);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, transform 0.1s ease;
        z-index: 9999;
        mix-blend-mode: screen;
    }

    .custom-cursor-dot {
        position: fixed;
        width: 6px;
        height: 6px;
        background-color: var(--laranja-fogo);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        z-index: 10000;
        box-shadow: 0 0 10px var(--laranja-brilho);
    }

    .custom-cursor.hover {
        width: 54px;
        height: 54px;
        border-color: var(--latao-brilho);
        background: rgba(255, 102, 0, 0.1);
    }
}

/* Ambient Animated Lantern Spotlight */
.ambient-lantern {
    position: fixed;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.22) 0%, rgba(94, 26, 26, 0.12) 50%, transparent 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(85px);
    animation: lanternDrift 28s infinite ease-in-out alternate;
}

@keyframes lanternDrift {
    0% {
        top: -5%;
        left: 5%;
        transform: scale(0.9);
    }
    33% {
        top: 40%;
        left: 80%;
        transform: scale(1.25);
    }
    66% {
        top: 75%;
        left: 10%;
        transform: scale(1.1);
    }
    100% {
        top: 90%;
        left: 70%;
        transform: scale(1.3);
    }
}

/* Typography Hierarchy */
h1, h2, h3, h4, .serif {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    color: var(--creme);
    letter-spacing: -0.02em;
}

/* Container Constraint */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Header & Breadcrumb Navigation */
.header-nav {
    padding: 1.75rem 0 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.brand-title {
    font-family: 'Fraunces', serif;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--creme);
    text-transform: uppercase;
}

.brand-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--laranja-fogo), var(--oxblood));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 102, 0, 0.4);
    box-shadow: 0 0 12px rgba(255, 69, 0, 0.3);
}

.nav-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--creme-suave);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.nav-back-link:hover {
    color: var(--latao-brilho);
    border-color: var(--borda-vidro);
    background: rgba(255, 102, 0, 0.08);
    transform: translateX(-3px);
}

.nav-back-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.nav-back-link:hover svg {
    transform: translateX(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 4.5rem 0 3rem;
    text-align: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid var(--borda-vidro);
    color: var(--laranja-dourado);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--laranja-fogo);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--laranja-brilho);
    animation: pulseRing 2s infinite ease-out;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 69, 0, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
    }
}

.hero-title {
    font-size: clamp(2.3rem, 5.5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 2.25rem;
    color: var(--creme);
    text-wrap: balance;
}

.hero-title span.glow-accent {
    background: linear-gradient(135deg, #FFF 10%, var(--latao-brilho) 55%, var(--laranja-brilho) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: var(--creme-suave);
    max-width: 760px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    text-wrap: balance;
}

/* Quick Jump Action in Hero */
.hero-cta-quick {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* ==========================================================================
   SPIRITUAL CALL-TO-ACTION (MENSAGEM DE POMBAGIRA)
   ========================================================================== */
.spiritual-cta-box {
    margin: 2.5rem 0 4.5rem;
    position: relative;
    border-radius: 20px;
    padding: 2.75rem 2.25rem;
    background: linear-gradient(145deg, rgba(35, 15, 10, 0.75), rgba(12, 6, 5, 0.85));
    border: 1px solid var(--borda-destaque);
    box-shadow: var(--glow-suave), inset 0 0 35px rgba(255, 69, 0, 0.1);
    backdrop-filter: blur(18px);
    overflow: hidden;
    text-align: center;
}

.spiritual-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--laranja-brilho), var(--latao-brilho), transparent);
}

.spiritual-symbol-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.15);
    border: 1.5px solid rgba(255, 102, 0, 0.45);
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.3);
    overflow: hidden;
}

.spiritual-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.spiritual-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    line-height: 1.5;
    color: var(--creme);
    max-width: 880px;
    margin: 0 auto 1.25rem;
    position: relative;
    text-wrap: balance;
}

.spiritual-quote::before, .spiritual-quote::after {
    color: var(--laranja-fogo);
    font-size: 1.8em;
    line-height: 0;
    vertical-align: -0.2em;
}

.spiritual-author-tag {
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--laranja-dourado);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* ==========================================================================
   DONATION TIERS & BUTTONS (HIGH VISUAL PRIORITY)
   ========================================================================== */
.donation-section {
    padding: 2rem 0 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--laranja-dourado);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    margin-bottom: 0.85rem;
}

.section-desc {
    color: var(--creme-suave);
    max-width: 660px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Donation Grid */
.donation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.25rem;
}

@media (max-width: 900px) {
    .donation-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Donation Card Common */
.donation-card {
    background: var(--preto-card);
    border: 1px solid var(--borda-vidro);
    border-radius: 18px;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(14px);
}

.donation-card:hover {
    transform: translateY(-6px);
    border-color: var(--borda-hover);
    background: var(--preto-card-hover);
    box-shadow: var(--glow-suave);
}

.card-top {
    margin-bottom: 1.75rem;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.06);
    color: var(--creme-suave);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1rem;
}

.card-value {
    font-family: 'Fraunces', serif;
    font-size: 2.65rem;
    font-weight: 600;
    color: var(--creme);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-value span.currency {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--laranja-dourado);
    margin-right: 0.2rem;
}

.card-tier-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--latao-brilho);
    margin-bottom: 0.65rem;
}

.card-text {
    font-size: 0.92rem;
    color: var(--creme-suave);
    line-height: 1.55;
}

/* Button Styling (Touch optimized >= 48px, accessible, animated) */
.btn-donate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 52px;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-secondary {
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid var(--borda-vidro);
    color: var(--creme);
}

.btn-secondary:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: var(--laranja-brilho);
    color: #fff;
    box-shadow: 0 0 18px rgba(255, 102, 0, 0.35);
    transform: translateY(-2px);
}

/* Featured / Pix Free Amount Highlight Card */
.donation-card-featured {
    background: linear-gradient(160deg, rgba(40, 16, 12, 0.92), rgba(18, 9, 7, 0.96));
    border: 1.5px solid var(--laranja-fogo);
    border-radius: 20px;
    padding: 2.75rem 2.25rem;
    box-shadow: var(--glow-forte), inset 0 0 30px rgba(255, 69, 0, 0.15);
    position: relative;
    backdrop-filter: blur(20px);
}

.featured-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--laranja-fogo), var(--oxblood));
    color: #fff;
    padding: 0.3rem 1.25rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.5);
    white-space: nowrap;
}

.featured-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.featured-title {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    margin-bottom: 0.75rem;
    color: var(--creme);
}

.featured-desc {
    color: var(--creme-suave);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.featured-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.perk-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--creme-suave);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.perk-item svg {
    color: var(--laranja-dourado);
    width: 14px;
    height: 14px;
}

.btn-featured-primary {
    background: linear-gradient(135deg, var(--laranja-fogo) 0%, #D82F00 50%, var(--oxblood) 100%);
    border: 1px solid rgba(255, 200, 100, 0.5);
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    min-height: 60px;
    box-shadow: 0 10px 28px rgba(255, 69, 0, 0.45);
}

.btn-featured-primary:hover {
    background: linear-gradient(135deg, #FF5500 0%, var(--laranja-fogo) 50%, #C41F00 100%);
    box-shadow: 0 14px 38px rgba(255, 69, 0, 0.65);
    transform: translateY(-3px) scale(1.02);
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--creme-apagado);
    margin-top: 1rem;
}

.security-note svg {
    width: 14px;
    height: 14px;
    stroke: var(--latao);
}

/* ==========================================================================
   STORY & NARRATIVE SECTION ("A HISTÓRIA DO PORTAL")
   ========================================================================== */
.story-section {
    padding: 4.5rem 0;
    border-top: 1px solid rgba(255, 102, 0, 0.1);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.story-lead {
    font-size: 1.15rem;
    color: var(--latao-brilho);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.story-body-text {
    font-size: 1.02rem;
    color: var(--creme-suave);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* Photo Frames & Gallery */
.photo-frame-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--oxblood-profundo);
    border: 1px solid var(--borda-vidro);
    box-shadow: var(--glow-suave);
}

.photo-frame-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(5, 2, 1, 0.7);
    pointer-events: none;
}

.portal-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-frame-wrapper:hover .portal-photo {
    transform: scale(1.04);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(5, 2, 1, 0.95), transparent);
    font-size: 0.85rem;
    color: var(--creme-suave);
    z-index: 2;
}

/* Visual Gallery Grid Section */
.gallery-section {
    padding: 3rem 0 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    background: var(--preto-card);
    border: 1px solid var(--borda-vidro);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    border-color: var(--borda-hover);
    transform: translateY(-4px);
    box-shadow: var(--glow-suave);
}

.gallery-img-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #0d0605;
}

.gallery-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.03);
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-title {
    font-size: 1.25rem;
    color: var(--latao-brilho);
    margin-bottom: 0.5rem;
}

.gallery-desc {
    font-size: 0.92rem;
    color: var(--creme-suave);
    line-height: 1.55;
}

/* ==========================================================================
   TRANSPARENCY & ALLOCATION PILLARS
   ========================================================================== */
.transparency-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, transparent, rgba(94, 26, 26, 0.12), transparent);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: var(--preto-card);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 16px;
    padding: 1.75rem 1.4rem;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--laranja-fogo);
    transform: translateY(-4px);
    box-shadow: var(--glow-suave);
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--laranja-brilho);
    margin-bottom: 1.25rem;
}

.pillar-icon-box svg {
    width: 24px;
    height: 24px;
}

.pillar-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--creme);
}

.pillar-desc {
    font-size: 0.88rem;
    color: var(--creme-suave);
    line-height: 1.55;
}

/* ==========================================================================
   VISIBLE SEMANTIC FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 4.5rem 0 6rem;
    border-top: 1px solid rgba(255, 102, 0, 0.12);
}

.faq-container {
    max-width: 820px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--preto-card);
    border: 1px solid var(--borda-vidro);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--borda-hover);
}

.faq-item.active {
    border-color: var(--laranja-fogo);
    box-shadow: 0 6px 25px -5px rgba(255, 69, 0, 0.25);
}

.faq-question-btn {
    width: 100%;
    min-height: 58px;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--creme);
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    outline: none;
    transition: color 0.2s ease;
}

.faq-question-btn:hover {
    color: var(--latao-brilho);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--laranja-dourado);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--creme-suave);
    font-size: 0.98rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.25rem;
    padding-top: 1rem;
}

/* ==========================================================================
   FOOTER & ECOSYSTEM LINKAGE
   ========================================================================== */
.site-footer {
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255, 102, 0, 0.15);
    background: rgba(4, 2, 2, 0.9);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 820px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
}

.footer-brand-desc {
    color: var(--creme-suave);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    max-width: 380px;
}

.footer-heading {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--latao-brilho);
    margin-bottom: 1.15rem;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.6rem;
}

.footer-links-list a {
    color: var(--creme-suave);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-links-list a:hover {
    color: var(--laranja-dourado);
    transform: translateX(3px);
}

.footer-author-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--borda-vidro);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-author-box:hover {
    border-color: var(--laranja-fogo);
    background: rgba(255, 102, 0, 0.08);
}

.footer-author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--laranja-fogo);
}

.footer-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--creme);
}

.footer-author-role {
    font-size: 0.78rem;
    color: var(--laranja-dourado);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--creme-apagado);
}

.footer-bottom a {
    color: var(--creme-suave);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--latao-brilho);
}
