/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --bg-main: #090a0f; /* Deep Obsidian Black/Charcoal */
    --bg-card: #12131a; /* Dark Charcoal Card background */
    --bg-card-hover: #1a1b24; /* Lighter Charcoal Card background for hover */
    --accent: #c29b53; /* Muted Luxury Gold matching logo */
    --accent-light: #e5c17e; /* Light Gold for highlight/hover */
    --accent-rgb: 194, 155, 83; /* RGB for drop-shadows and overlays */
    --text-primary: #f8fafc; /* Crisp white for headings */
    --text-secondary: #94a3b8; /* Soft neutral slate/grey for body text */
    --text-muted: #475569; /* Muted grey for lesser text */
    --border-color: #1e2029; /* Subtle dark border color */
    --border-glow: rgba(194, 155, 83, 0.15);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif; /* Luxury Serif matching Pollyana Lopes logo */
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.25s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
}

/* ==========================================================================
   PREMIUM UTILITIES & REVEAL SYSTEM
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin-top: 15px;
}

.divider.centered {
    margin: 15px auto 0 auto;
}

/* Scroll Reveal Elements */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-45px);
}

.reveal-right {
    transform: translateX(45px);
}

.active.reveal, .active.reveal-left, .active.reveal-right {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: #050608;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.35);
}

.btn-glow:hover {
    box-shadow: 0 0 35px rgba(var(--accent-rgb), 0.6);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
}

.btn-icon {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-icon-left {
    margin-right: 12px;
}

.section-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
}

.section-cta-wrapper.left-aligned {
    justify-content: flex-start;
}

/* ==========================================================================
   TOP RIBBON
   ========================================================================== */
.top-ribbon {
    background-color: #06070a;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    text-align: center;
    position: relative;
    z-index: 101;
}

.top-ribbon p {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.main-header {
    background-color: rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo-img-wrapper {
    display: block;
    height: 48px;
    transition: var(--transition-quick);
}

.header-logo-img-wrapper:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.header-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(9, 10, 15, 0.98) 0%, rgba(9, 10, 15, 0.85) 35%, rgba(9, 10, 15, 0.3) 65%, rgba(9, 10, 15, 0.1) 100%),
        linear-gradient(to bottom, rgba(9, 10, 15, 0) 70%, rgba(9, 10, 15, 1) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-content-wrapper {
    max-width: 650px;
}

.hero-logo-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
}

.hero-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(var(--accent-rgb), 0.2));
    transition: var(--transition-smooth);
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(var(--accent-rgb), 0.4));
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff 30%, #e2e8f0 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.hero-details-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--accent-light);
    font-weight: 500;
}

.hero-detail-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

.hero-cta-wrapper {
    margin-bottom: 50px;
}

.hero-scroll-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
    color: #64748b;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.scroll-indicator {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   MARQUEE BANNERS
   ========================================================================== */
.marquee-wrapper {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 40px;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* ==========================================================================
   PROBLEM SECTION (BLOCO 2 - IDENTIFICAÇÃO PROFUNDA)
   ========================================================================== */
.problem-section {
    padding: 120px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    margin-bottom: 70px;
    align-items: center;
}

.problem-lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    color: var(--text-primary);
}

.problem-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.problem-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 70%;
    filter: brightness(90%);
    transition: var(--transition-smooth);
}

.problem-image-wrapper:hover .problem-img {
    filter: brightness(100%);
    transform: scale(1.03);
}

.img-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 10, 15, 0.8) 0%, rgba(9, 10, 15, 0) 50%);
    pointer-events: none;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    border-color: var(--accent);
    background-color: var(--bg-card-hover);
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 1.4rem;
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgba(var(--accent-rgb), 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Callout Quote */
.problem-callout {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-main) 100%);
    border-left: 3px solid var(--accent);
    padding: 40px;
    border-radius: 0 8px 8px 0;
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0 auto;
}

.quote-icon {
    position: absolute;
    top: 25px;
    left: 40px;
    font-size: 4rem;
    color: rgba(var(--accent-rgb), 0.05);
    line-height: 1;
}

.problem-callout blockquote {
    position: relative;
    z-index: 2;
}

.problem-callout blockquote p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 15px;
}

.problem-callout blockquote strong {
    color: var(--accent);
    font-weight: 700;
}

.problem-callout blockquote .quote-sub {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================================================
   AUTHORITY SECTION (BLOCO 3 - AUTORIDADE)
   ========================================================================== */
.authority-section {
    padding: 120px 0;
    background-color: #0b0c11;
    border-bottom: 1px solid var(--border-color);
}

.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.portrait-wrapper {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
}

.authority-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    filter: brightness(90%);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.portrait-wrapper:hover .authority-img {
    filter: brightness(100%);
    transform: translateY(-5px);
}

.portrait-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.portrait-wrapper:hover .portrait-border {
    transform: translate(-10px, -10px);
}

.portrait-label {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background-color: var(--accent);
    color: #050608;
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.bio-intro p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.manifesto-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.manifesto-point {
    display: flex;
    gap: 20px;
    align-items: center;
}

.manifesto-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(var(--accent-rgb), 0.3);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
}

.manifesto-point p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
}

.manifesto-point p strong {
    color: var(--accent);
    font-weight: 500;
}

/* Story Transition Divider */
.story-divider {
    text-align: center;
    margin: 100px 0 60px 0;
}

.story-divider h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.glow-line {
    width: 250px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 0 auto;
}

/* History Timeline */
.story-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 17px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--border-color), rgba(197, 168, 128, 0.3) 50%, var(--border-color) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-num {
    position: absolute;
    left: -50px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-main);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    z-index: 2;
}

.timeline-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    background-color: var(--bg-card-hover);
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content .text-highlight {
    font-weight: 500;
    color: var(--text-primary);
    border-left: 2px solid var(--accent);
    padding-left: 15px;
}

/* ==========================================================================
   METHOD SECTION (BLOCO 4 - O MÉTODO C.A.U.S.A.)
   ========================================================================== */
.method-section {
    padding: 120px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.method-manifesto {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
    color: var(--text-secondary);
}

.cause-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cause-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cause-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.cause-card:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    background-color: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cause-card:hover::before {
    background-color: var(--accent);
}

.cause-letter {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    height: 100%;
    padding-right: 20px;
}

.cause-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.card-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
    font-weight: 500;
}

.cause-divider {
    width: 40px;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 15px;
}

.cause-intro-p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cause-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cause-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cause-list li i {
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 4px;
}

.method-quote {
    text-align: center;
    max-width: 750px;
    margin: 80px auto 0 auto;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-style: italic;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

/* ==========================================================================
   MICRO TRANSFORMATION SECTION (BLOCO 6)
   ========================================================================== */
.transformation-section {
    padding: 120px 0;
    background-color: #08090c;
    border-bottom: 1px solid var(--border-color);
}

.transformation-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.transformation-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bullet {
    color: var(--accent);
    font-size: 1.4rem;
    margin-top: 2px;
    text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3);
}

.transformation-list .desc {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.transformation-list .desc strong {
    color: var(--text-primary);
    font-weight: 500;
}

.atmospheric-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.atmospheric-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(90%);
    transition: var(--transition-smooth);
}

.atmospheric-img-wrapper:hover .atmospheric-img {
    filter: brightness(100%);
    transform: scale(1.02);
}

/* ==========================================================================
   FAQ SECTION (BLOCO 7 — QUEBRA DE OBJEÇÕES)
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-quick);
}

.faq-item:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.faq-toggle {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 30px 24px 30px;
}

.faq-answer p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--accent);
}

/* ==========================================================================
   CONVITE SECTION (BLOCO 8)
   ========================================================================== */
.invitation-section {
    padding: 100px 0;
    background-color: #08090c;
    border-bottom: 1px solid var(--border-color);
}

.invitation-box {
    background: linear-gradient(135deg, #0b0c10 0%, #12151c 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.invitation-badge {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--accent);
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.invitation-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.invitation-text.highlighted-text {
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0;
}

.decor-line {
    width: 80px;
    height: 1px;
    background-color: var(--accent);
    margin: 40px auto 0 auto;
    opacity: 0.5;
}

/* ==========================================================================
   CTA FINAL SECTION (BLOCO 9)
   ========================================================================== */
.cta-final-section {
    position: relative;
    padding: 140px 0;
    background-image: url('assets/final-cta-bg.png');
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
    text-align: left;
    overflow: hidden;
}

.cta-final-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(9, 10, 15, 0.98) 0%, rgba(9, 10, 15, 0.85) 35%, rgba(9, 10, 15, 0.3) 65%, rgba(9, 10, 15, 0.1) 100%),
        linear-gradient(to bottom, rgba(9, 10, 15, 1) 0%, rgba(9, 10, 15, 0) 15%, rgba(9, 10, 15, 0) 85%, rgba(9, 10, 15, 1) 100%);
    z-index: 1;
}

.relative-content {
    position: relative;
    z-index: 2;
}

.cta-final-box {
    max-width: 600px;
    margin: 0;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-statement {
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.5;
    color: var(--accent);
    margin-bottom: 25px;
    font-style: italic;
}

.cta-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

.cta-button-container {
    margin-bottom: 30px;
}

.cta-footer-note {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
    background-color: #06070a;
    border-top: 1px solid var(--border-color);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img-wrapper {
    display: block;
    height: 38px;
    margin-bottom: 12px;
    transition: var(--transition-quick);
}

.footer-logo-img-wrapper:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
    margin-bottom: 4px;
}

.dev-credits {
    font-size: 0.75rem;
    color: rgba(var(--accent-rgb), 0.2);
    text-align: right;
}

/* ==========================================================================
   PRICING & BATCH TIMING
   ========================================================================== */
.cta-price-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-top: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.cta-container-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cta-container-stacked.left-aligned {
    align-items: flex-start;
}

.pricing-card {
    background: rgba(18, 19, 26, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    margin-top: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 480px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-lote-badge {
    display: inline-block;
    padding: 4px 14px;
    background-color: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    color: var(--accent-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 12px;
}

.pricing-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.pricing-price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.pricing-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    font-family: var(--font-display);
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-urgency {
    font-size: 0.9rem;
    color: var(--accent-light);
    font-weight: 500;
}

.pricing-batches {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.batch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.batch-row.active {
    background-color: rgba(var(--accent-rgb), 0.08);
    border-color: rgba(var(--accent-rgb), 0.2);
    color: var(--text-primary);
}

.batch-row.pending {
    color: var(--text-secondary);
}

.batch-row .batch-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.batch-row.active .batch-name {
    font-weight: 500;
}

.batch-row.active .batch-name i {
    color: var(--accent);
}

.batch-row.pending .batch-name i {
    color: var(--text-muted);
}

.batch-row .batch-price {
    font-weight: 600;
}

.batch-row.active .batch-price {
    color: var(--accent-light);
}

.batch-row .batch-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.batch-row.active .batch-date {
    color: var(--text-secondary);
}

.batch-row.finished {
    opacity: 0.5;
    color: var(--text-muted);
}

.batch-row.finished .batch-price {
    text-decoration: line-through;
}

.batch-row.finished .batch-name i {
    color: var(--text-muted);
}

/* Top Marquee Banner Styles */
.top-marquee-wrapper {
    background-color: #06070a;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.25);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 102;
    width: 100%;
}

.top-marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-top 22s linear infinite;
}

.top-marquee-content span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0 45px;
    display: inline-block;
}

.top-marquee-content span strong {
    color: var(--text-primary);
    font-weight: 700;
}

@keyframes marquee-top {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-split {
        gap: 40px;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-section,
    .cta-final-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 28px;
    }
    
    .pricing-card {
        margin: 30px auto 0 auto;
        padding: 25px 15px;
    }
    
    .cta-container-stacked.left-aligned {
        align-items: center;
    }
    
    .cta-container-stacked.left-aligned .cta-price-badge {
        text-align: center;
        padding-left: 0;
    }
    
    .main-header .btn {
        width: auto;
    }
    
    .header-date {
        display: none;
    }
    
    .header-logo-img-wrapper {
        height: 38px;
    }
    
    .btn-sm {
        padding: 8px 16px;
    }
    
    .btn-large {
        padding: 18px 32px;
        font-size: 1rem;
    }

    .grid-split {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .section-header.reveal-left, 
    .section-header.reveal-right,
    .section-header {
        text-align: center;
    }
    
    .divider {
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero */
    .hero-section {
        background-position: 85% center;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-logo-wrapper {
        justify-content: center;
    }
    
    .hero-bg-overlay {
        background: linear-gradient(to bottom, rgba(9, 10, 15, 0.7) 0%, rgba(9, 10, 15, 0.95) 100%);
    }
    
    .hero-content-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-details-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin: 0 auto 30px auto;
    }
    
    .hero-scroll-desc {
        margin: 0 auto;
    }
    
    /* Problem Section */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .problem-img {
        height: 320px;
    }
    
    .problem-callout {
        padding: 24px;
    }
    
    .problem-callout blockquote p {
        font-size: 1.2rem;
    }
    
    .problem-card {
        padding: 20px;
    }

    /* Bio / Authority */
    .portrait-wrapper {
        max-width: 320px;
    }
    
    .authority-img {
        height: 380px;
    }

    /* Method C.A.U.S.A. */
    .cause-card {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 24px;
    }
    
    .cause-letter {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 15px;
        height: auto;
        font-size: 3.5rem;
    }
    
    .cause-list {
        text-align: left;
    }
    
    .method-quote {
        font-size: 1.25rem;
        margin-top: 50px;
    }

    /* Transformation & FAQ */
    .transformation-list {
        text-align: left;
    }
    
    .section-cta-wrapper.left-aligned {
        justify-content: center;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 1.05rem;
    }

    /* Invitation */
    .invitation-box {
        padding: 30px 20px;
    }
    
    .invitation-text,
    .invitation-text.highlighted-text {
        font-size: 1.25rem;
    }

    /* CTA Final */
    .cta-final-section {
        text-align: center;
        background-position: center;
    }
    
    .cta-final-bg-overlay {
        background: linear-gradient(to bottom, rgba(9, 10, 15, 0.7) 0%, rgba(9, 10, 15, 0.98) 100%);
    }
    
    .cta-final-box {
        max-width: 100%;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 2rem;
    }
    
    .cta-statement {
        font-size: 1.2rem;
    }
    
    .cta-lead {
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-right, .copyright, .dev-credits {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .top-ribbon p {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }
}
