:root {
    --primary: #1c7046;
    /* Forest Green for Buttons/CTA */
    --primary-hover: #145a38;
    --accent-red: #b91c1c;
    /* Red for Highlights */
    --secondary: #d4af37;
    /* Gold - Changed for better contrast if needed, but keeping branding */
    --secondary-dark: #b8962e;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-light: #f5f5f5;
    --text-muted: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --header-height: 72px;
    --container-width: 1200px;
    --section-spacing: 6rem;

    /* Font Sizes */
    --fs-h1: 3.5rem;
    --fs-h2: 2.6rem;
    --fs-h3: 1.6rem;
    --fs-sub: 1.3rem;
    --fs-body: 1.1rem;
}

/* Performance Optimization: Content Visibility */
section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 90%;
    /* Global 10% reduction */
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-wrap: balance;
    line-height: 1.2;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

p,
.sans {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    font-weight: 400;
    text-wrap: pretty;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-spacing) 0;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text-gold {
    color: var(--secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    /* Improved contrast */
}

.text-red {
    color: var(--accent-red);
}

.text-center {
    text-align: center;
}

/* Status Dots */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.status-dot.red {
    background-color: #ff4444;
    box-shadow: 0 0 10px #ff4444, 0 0 20px #ff4444;
    animation: status-blink-red 1.5s infinite alternate ease-in-out;
}

@keyframes status-blink-red {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 5px #ff4444;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 15px #ff4444, 0 0 30px #ff0000;
        transform: scale(1.1);
    }
}

.status-dot.green {
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e, 0 0 20px #22c55e;
    animation: status-blink-green 1.5s infinite alternate ease-in-out;
}

@keyframes status-blink-green {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 5px #22c55e;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 15px #22c55e, 0 0 30px #16a34a;
        transform: scale(1.1);
    }
}

/* Comparison Table Styles */
.comparison-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    overflow: hidden;
    margin: 4rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 2rem 1rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr {
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    font-size: 1rem;
    vertical-align: middle;
    text-align: left;
}

.table-icon {
    display: inline-flex;
    justify-content: center;
    width: 32px;
    margin-right: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.col-1983 {
    color: var(--text-light);
    opacity: 0.8;
}

.col-1917 {
    color: var(--text-light);
    font-weight: 700;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3.25rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 0.95rem;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(to bottom, #2da44e 0%, #1b7a33 100%);
    color: white;
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.2),
        0 3px 0 #0d3d26,
        0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #32b556 0%, #1d8a39 100%);
    transform: translateY(-1px);
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.3),
        0 4px 0 #0d3d26,
        0 12px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4),
        0 1px 0 #0d3d26;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}


/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.header-goal-mobile {
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    justify-content: center;
    max-width: 140px;
    margin: 0 0.8rem;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.header-goal-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    font-weight: 700;
    margin-bottom: 2px;
}

.header-goal-mobile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header-goal-details {
    font-size: 0.6rem;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.5px;
}

.header-amount {
    color: var(--secondary);
}

.header-target {
    opacity: 0.5;
    font-size: 0.55rem;
}

.header-progress-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}

.header-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.header-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #b8962e, #d4af37);
    width: 0%;
    transition: width 3s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-progress-val {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-serif);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.cta-nav {
    background: linear-gradient(to bottom, #2da44e 0%, #1b7a33 100%);
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 2px 0 #0d3d26,
        0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
    white-space: nowrap;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.cta-nav:hover {
    background: linear-gradient(to bottom, #32b556 0%, #1e863b 100%);
    transform: translateY(-1px);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 3px 0 #0d3d26,
        0 6px 12px rgba(0, 0, 0, 0.3);
    color: #fff !important;
}

.cta-nav:active {
    transform: translateY(2px);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4),
        0 1px 0 #0d3d26;
}

/* Mobile Menu Toggle Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
    left: 0;
}

.hamburger::after {
    top: 8px;
    left: 0;
}

/* Menu Open State */
.menu-btn.active .hamburger {
    background: transparent;
}

.menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

@media (max-width: 850px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-glass);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 1rem;
    }
}

/* Hero Section - Optimized for "Above the Fold" on Desktop */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--header-height) 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 10;
}

.social-proof-kicker {
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.hero-headline small {
    line-height: 1.3;
    margin-top: 0.4rem;
}

.hero-subheadline-new {
    font-size: var(--fs-sub);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 800px;
    line-height: 1.6;
    font-family: var(--font-sans);
    /* Standardizing as subtitle font */
    font-weight: 400;
}

.impact-text {
    margin-bottom: 3rem;
    border-left: 2px solid var(--accent-red);
    padding-left: 1.5rem;
}

.impact-text p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-bullets {
    margin-bottom: 1.25rem;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 0.85rem;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-visual img,
.hero-visual video {
    display: block;
    max-width: 100%;
    max-height: none;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    object-fit: contain;
    transform: scale(2.25) translateX(20%);
    transform-origin: center right;
    pointer-events: none;
}

.visual-caption {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    font-family: var(--font-serif);
    color: white;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 280px;
    line-height: 1.3;
    z-index: 10;
    text-align: center;
}

@media (max-width: 1100px) {
    .visual-caption {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -2rem auto 0;
        background: var(--bg-card);
    }
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cta-subtext-btn {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.cta-secondary {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.cta-secondary:hover {
    color: var(--text-light);
}

/* Sections Common */
.section-header {
    text-align: center;
    margin: 0 auto 3.5rem;
}

.section-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Cards & Grids */
.problem-card-outer {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: 5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 0% 0%, rgba(185, 28, 28, 0.03) 0%, transparent 50%);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.problem-list ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-list li {
    font-size: 1.15rem;
    font-weight: 700;
}

.problem-text-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

.highlight-box-premium {
    background: rgba(22, 163, 74, 0.05);
    border: 1px solid rgba(22, 163, 74, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-card-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-card-img:hover {
    transform: translateY(-5px);
}

.highlight-content-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.finger-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-box.gold {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Contrast Section */
.contrast-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.contrast-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contrast-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.premium-check-list-simple {
    margin: 2rem 0;
}

.premium-check-list-simple li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.floating-img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    animation: floating 6s infinite ease-in-out;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Solution Specifics */
.solution-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.solution-header.solution-header {
    text-align: left;
    margin: 0 0 2.5rem 0;
    max-width: none;
}

.solution-header.solution-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.solution-content {
    text-align: left;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .solution-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .solution-header.solution-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .solution-header.solution-header .section-title {
        text-align: center;
    }

    .solution-content {
        align-items: center;
        text-align: center;
    }
}

.offer-items-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
    width: 100%;
    text-align: left;
    /* Keep text in cards left-aligned but grid centered */
}

.simple-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
}

.simple-item::before {
    content: "•";
    color: var(--accent-red);
    font-weight: 700;
}

.book-highlight {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-top: 2rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.feature-card.highlighted {
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--bg-card), rgba(212, 175, 55, 0.05));
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.feature-list {
    margin-top: 1.5rem;
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    opacity: 0.8;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.highlight-text-large {
    font-size: 1.5rem;
    color: var(--secondary);
    font-family: var(--font-serif);
}

/* Doctrinal Section */
.doctrinal-bullets {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.doctrinal-bullets p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Qualification Styles */
.qual-card {
    padding: 3rem !important;
}

.check-list-simple,
.cross-list-simple {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list-simple li,
.cross-list-simple li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.check-list-simple li::before {
    content: "✔️ ";
}

.cross-list-simple li::before {
    content: "❌ ";
}

/* Mockup Reveal Animation */
.mockup-reveal-container {
    width: 100%;
    margin-bottom: 2.5rem;
    position: relative;
}

.mockup-reveal-mask {
    width: 100%;
    height: 141px;
    background: #CACACA;
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
    /* Permite o livro sair pelo topo, mas corta rigorosamente no fundo (0%) */
    clip-path: inset(-300px 0% 0% 0% round 20px);
}

.mockup-book-img {
    width: auto;
    height: 300px;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    bottom: -30px;
    /* Contato absoluto com o fundo */
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease-out;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    z-index: 10;
}

/* Trigger animation */
.mockup-reveal-container.visible .mockup-book-img {
    transform: translateX(-50%) translateY(0);
    /* Posição final: encostado na base */
    opacity: 1;
}

@media (max-width: 1150px) {
    .mockup-reveal-container {
        max-width: 400px;
        margin: 0 auto 3rem;
    }
}

@media (max-width: 768px) {
    .mockup-reveal-mask {
        height: 116px;
        /* Reduzido em mais 15% de 136px */
        clip-path: inset(-120px 0% 0% 0% round 20px);
    }

    .mockup-book-img {
        height: 240px;
    }
}


.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 6rem 0;
}

.pain-card {
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    transition: var(--transition);
}

.pain-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Offer Items */
/* Infinite Book Slider */
.book-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 4rem 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.book-slider-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.book-slide {
    width: 240px;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-slide img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--transition);
}


.book-slide:hover {
    transform: scale(1.05) translateY(-10px);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }

    /* Half the width minus half the gap */
}

@media (max-width: 768px) {
    .book-slide {
        width: 180px;
    }

    .book-slider-track {
        gap: 1.5rem;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 0.75rem));
        }
    }
}

.offer-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.offer-item {
    padding: 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.offer-item:hover {
    border-color: var(--secondary);
    transform: scale(1.02);
}

.offer-item-image {
    width: calc(100% + 6.375rem);
    /* Proporcional a padding 3.5rem menos 5px de cada lado */
    height: 260px;
    background: transparent;
    margin: -6rem -3.1875rem 3rem -3.1875rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.offer-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
    transition: transform 0.5s ease;
}

.offer-item:hover .offer-item-image img {
    transform: translateY(-10px) scale(1.05);
}

/* Placeholder text removed */

.item-number {
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--secondary);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Checkout Section Styling */
.checkout-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.checkout-title {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.checkout-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.checkout-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: rgba(22, 163, 74, 0.15);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.benefit-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.benefit-text p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.4;
}

.checkout-footer-badges {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Pricing Card Styling */
.checkout-card-outer {
    position: relative;
}

.checkout-card {
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
    position: relative;
}

.pill-red {
    display: inline-block;
    background: rgba(185, 28, 28, 0.15);
    color: #f87171;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid rgba(185, 28, 28, 0.3);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.pill-red::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 5px #ef4444;
}

.checkout-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.vagas-count {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: 1px;
}

.price-container-new {
    margin-bottom: 2.5rem;
}

.price-container-new .old-price {
    display: block;
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.main-price-new {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.main-price-new .currency {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
}

.main-price-new .amount {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.price-container-new .installments {
    font-size: 1rem;
    opacity: 0.8;
}

.pix-box-new {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.btn-checkout {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1rem !important;
}

.shipping-info-new {
    font-size: 0.9rem;
    opacity: 0.8;
}

.shipping-info-new strong {
    color: #22c55e;
}

.final-warning {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.85rem;
    opacity: 0.4;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Bio Section - White Background Contrast */
.bio-section {
    background-color: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.bio-grid {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 5rem;
    align-items: center;
}

.bio-image-wrapper {
    position: relative;
}

.bio-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-kicker {
    color: var(--accent-red);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.bio-title {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.bio-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.bio-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.bio-text p strong {
    color: #1a1a1a;
}

@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .bio-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .bio-title {
        font-size: 2.2rem;
    }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* 📱 HARMONIOUS RESPONSIVENESS */

/* Tablet & Smaller Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .section-padding {
        padding: var(--section-spacing) 0;
        /* Keep it uniform as per request */
    }

    .hero-grid {
        gap: 3rem;
    }

    /* Keeping standard responsive scaling for consistency without ad-hoc overrides */

    .contrast-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Section titles remain uniform */
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .section-padding {
        padding: var(--section-spacing) 0;
        /* Keep it uniform as per request */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-subheadline-new {
        margin: 0 auto 2.5rem;
        font-size: var(--fs-sub);
    }

    .hero-bullets {
        display: inline-block;
        text-align: left;
    }

    .impact-text {
        text-align: left;
    }

    .hero-visual img {
        transform: scale(1.75) translateX(-5%);
        transform-origin: center;
        max-height: 50vh;
        margin-top: 2rem;
    }

    .header-goal-mobile {
        display: flex;
    }

    .cta-group {
        align-items: center;
    }

    .problem-card-outer {
        padding: 4rem 2rem;
        border-radius: 30px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .problem-list ul {
        gap: 1rem;
    }

    .problem-list li {
        font-size: 1.05rem;
    }

    .problem-text-content p {
        font-size: 1.1rem;
    }

    .highlight-box-premium {
        padding: 2rem 1.5rem;
        font-size: 1.05rem;
        flex-direction: column;
        text-align: center;
    }

    .highlight-content-row {
        flex-direction: column;
        gap: 1rem;
    }

    .mockup-reveal-container {
        order: -1;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .offer-items-simple {
        grid-template-columns: 1fr;
    }

    .checkout-wrapper {
        padding: 4rem 3rem;
    }

    .checkout-content {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }

    .checkout-title {
        text-align: center;
    }

    .checkout-footer-badges {
        justify-content: center;
    }

    .checkout-benefits {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        max-width: 550px;
        margin: 0 auto 4rem;
        gap: 1.5rem;
    }

    .main-price-new .amount {
        font-size: 4rem;
    }

    .doctrinal-bullets {
        gap: 1.5rem;
    }

    .doctrinal-bullets p {
        font-size: 1.1rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .section-padding {
        padding: var(--section-spacing) 0;
        /* Keep it uniform as per request */
    }

    .container,
    .container-small {
        padding: 0 1.5rem;
    }

    .logo img {
        height: 45px;
    }

    /* Headlines stay uniform as per request */

    /* Section titles stay uniform as per request */

    .btn {
        padding: 1.25rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }

    .premium-check-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .premium-check-list li {
        font-size: 0.9rem;
    }

    .checkout-wrapper {
        padding: 3.5rem 1.5rem 2rem;
        border-radius: 25px;
    }

    .checkout-card {
        padding: 2.5rem 1.25rem;
    }

    /* Checkout title stays uniform */

    .checkout-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-price-new .amount {
        font-size: 3.5rem;
    }

    .main-price-new .currency {
        font-size: 1.4rem;
    }

    .qual-card {
        padding: 2rem 1.5rem !important;
    }
}

/* Goals Section Styling */
.goals-section {
    position: relative;
    z-index: 10;
}

.goals-card {
    background: #0d0d0d;
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: 5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.goals-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.goals-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.goals-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.goals-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    text-align: left;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item.text-right {
    text-align: right;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
}

.stat-value {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: #fff;
}

.progress-bar-wrapper {
    margin-bottom: 4rem;
}

.progress-bar-container {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-glass);
    padding: 2px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #b8962e, #d4af37, #b8962e);
    background-size: 200% 100%;
    animation: gold-shimmer 3s linear infinite;
    border-radius: 50px;
    width: 0%;
    transition: width 3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

@keyframes gold-shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.progress-percentage {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.8rem;
    font-family: var(--font-serif);
}

.goals-footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 2.5rem;
    opacity: 0.6;
    font-size: 1.05rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .goals-card {
        padding: 4rem 2rem;
        border-radius: 30px;
    }

    .goals-title {
        font-size: 2rem;
    }

    .goals-subtitle {
        font-size: 1rem;
        margin-bottom: 4rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .goals-stats {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
        text-align: center;
    }

    .stat-item.text-right {
        text-align: center;
    }

    .progress-percentage {
        font-size: 1.5rem;
    }
}


/* Modal Overlay - Clean starting here */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide purchase icons when modal is active */
#lead-modal.active~#notification-container {
    display: none !important;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    position: relative;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-light);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Form Styles */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-form input {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.modal-form input::placeholder {
    color: #555;
    opacity: 1;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* intl-tel-input override */
.iti {
    width: 100%;
}

.iti__selected-flag {
    background-color: transparent !important;
    border-radius: 12px 0 0 12px;
    padding-left: 15px !important;
}

.iti--allow-dropdown input {
    padding-left: 55px !important;
}

.iti__country-list {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: var(--text-light) !important;
    z-index: 100;
}

.iti__country:hover {
    background-color: #222 !important;
}

.iti__country-name,
.iti__dial-code {
    color: #fff;
}

.form-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

@media (max-width: 550px) {
    .modal-content {
        padding: 2rem 1.25rem;
        margin: auto;
        /* Center with flex-start */
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-header p {
        font-size: 0.85rem;
    }

    .modal-form {
        gap: 1rem;
    }

    .modal-form input {
        padding: 0.85rem 1rem;
        font-size: 16px !important;
        /* Prevent iOS zoom on focus */
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }
}

/* Goal Modal Specific Styles */
.goal-modal-content {
    text-align: center;
}

.modal-goal-status {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    gap: 2rem;
}

.modal-goal-main,
.modal-goal-target {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-amount {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: var(--secondary);
    font-weight: 700;
}

.modal-target-val {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--text-light);
    opacity: 0.8;
}

.modal-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.modal-progress-container {
    height: 12px;
    margin-bottom: 1rem;
}

.modal-percentage-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

#goal-modal.active~#notification-container {
    display: none !important;
}

@media (max-width: 480px) {
    .modal-amount {
        font-size: 1.8rem;
    }

    .modal-goal-status {
        gap: 1rem;
    }
}

/* Specific fix for short screens / landscape */
@media (max-height: 600px) {
    .modal-overlay {
        align-items: flex-start;
        padding-top: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-header {
        margin-bottom: 1.5rem;
    }
}

/* Notification System Styles */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.fake-notification {
    background: #0d0d0d;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 12px;
    width: 320px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: auto;
}

.fake-notification.active {
    transform: translateX(0);
    opacity: 1;
}

.fake-notification.leaving {
    transform: translateX(-120%);
    opacity: 0;
}

.notif-img-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
}

.notif-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notif-content {
    flex-grow: 1;
}

.notif-header {
    font-size: 0.85rem;
    margin-bottom: 4px;
    line-height: 1.2;
}

.notif-name {
    color: var(--secondary);
    font-weight: 700;
}

.notif-time {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-left: 5px;
}

.notif-product {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-footer {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.7;
}

@media (max-width: 480px) {
    .notification-container {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .fake-notification {
        width: calc(100vw - 30px);
        max-width: 350px;
    }
}

/* --- TIMELINE SECTION STYLES --- */
/* timeline Header Grid Styles */
.timeline-header-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.timeline-header.timeline-header {
    text-align: left;
    margin: 0;
    max-width: none;
}

.timeline-header.timeline-header .section-title {
    text-align: left;
}

@media (max-width: 992px) {
    .timeline-header-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 4rem;
    }

    .timeline-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .timeline-header.timeline-header {
        text-align: center;
    }

    .timeline-header.timeline-header .section-title {
        text-align: center;
    }
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--bg-dark);
    border: 3px solid var(--secondary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.timeline-content {
    width: 45%;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    position: relative;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-phase {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--font-serif);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.timeline-content p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.timeline-item:hover .timeline-content {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.timeline-footer {
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline-card-highlight {
    background: linear-gradient(145deg, rgba(28, 112, 70, 0.1), rgba(20, 20, 20, 0.8));
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(28, 112, 70, 0.3);
    text-align: center;
}

.timeline-card-highlight h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.timeline-card-highlight h4 strong {
    color: var(--secondary);
}

.timeline-card-highlight .highlight-text {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.important-warning {
    background: rgba(185, 28, 28, 0.05);
    border: 1px solid rgba(185, 28, 28, 0.2);
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 3rem auto !important;
}

.important-warning p {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Responsive Timeline */
@media (max-width: 850px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }

    .timeline-card-highlight {
        padding: 2rem 1.5rem;
    }
}

/* Validation Section Hero Image Styles */
.validation-hero-img {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
}

.validation-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.validation-hero-img:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .validation-hero-img {
        margin-bottom: 2rem;
        border-radius: 12px;
    }
}