:root {
    --bg-main: #FFFFFF;
    --bg-alt: #FFFFFF;
    --primary: #990000; /* Blood red */
    --primary-glow: rgba(153, 0, 0, 0.15);
    --secondary: #cc0000;
    --secondary-glow: rgba(204, 0, 0, 0.1);
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(153, 0, 0, 0.15);
}

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

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

h1, h2, h3, .badge, .cta-button {
    font-family: 'Space Grotesk', sans-serif;
}

/* Background Effects */
.grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(153, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.5;
    animation: float 20s ease-in-out infinite alternate;
}

.orb-1 {
    width: 400px; height: 400px;
    background: var(--primary-glow);
    top: -100px; left: -100px;
}

.orb-2 {
    width: 500px; height: 500px;
    background: var(--secondary-glow);
    bottom: -100px; right: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Utilites */
span, .highlight {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.glow-text {
    text-shadow: 0 0 20px var(--primary-glow);
}

/* Checkout Button & Trust Badge */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 15px 0 30px 0;
    width: 100%;
}

.checkout-btn {
    display: inline-block;
    background-color: #CC0000; /* Red */
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 6px 0 #800000, 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.1s, box-shadow 0.1s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 600px;
    line-height: 1.3;
}

.checkout-btn:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 #800000, 0 5px 10px rgba(0,0,0,0.15);
}

.checkout-btn:hover {
    filter: brightness(1.05);
}

.trust-badge {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    margin-top: 5px;
}

.trust-badge p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    font-weight: 700;
    font-style: italic;
    font-size: 1.1rem;
}

.payment-methods .pix {
    font-style: normal;
    color: #32BCAD;
}
.payment-methods .visa {
    color: #1A1F71;
}
.payment-methods .master {
    color: #EB001B;
}
.payment-methods .paypal {
    color: #003087;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 8vh;
    padding-bottom: 40px;
    position: relative;
}

.badge {
    background: rgba(153, 0, 0, 0.05);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.05);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    color: var(--text-main);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 25px;
}

/* Hero Icon Animation */
.hero-animation {
    margin-bottom: 25px;
}

.heartbeat-circle {
    width: 80px;
    height: 80px;
    background: rgba(153, 0, 0, 0.05);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    position: relative;
    box-shadow: 0 0 20px rgba(153, 0, 0, 0.15);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.heartbeat-circle svg {
    width: 40px;
    height: 40px;
}

.heartbeat-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: ripple 1.5s ease-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Hero Thoughts Animation */
.hero-thoughts {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--text-muted);
}
.words-wrapper {
    position: relative;
    height: 30px;
    width: 300px;
    display: flex;
    justify-content: center;
}
.animated-word {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
}
.animated-word.active {
    opacity: 1;
    transform: translateY(0);
}
.animated-word.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* Audience Section */
.audience {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.audience h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.glass-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(153, 0, 0, 0.4);
    box-shadow: 0 20px 40px rgba(153,0,0,0.08);
}

.icon-accent {
    color: var(--primary);
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.card p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.alert-box {
    background: linear-gradient(135deg, rgba(153, 0, 0, 0.05), rgba(204, 0, 0, 0.05));
    border: 1px solid rgba(153, 0, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(153, 0, 0, 0.05);
}

.alert-box svg {
    color: var(--primary);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.alert-box p {
    font-size: 1.2rem;
    font-weight: 600;
}


/* Pillars Section */
.pillars {
    padding: 100px 0;
}

.pillars-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.pillars-intro h2 {
    font-size: 2.5rem;
}

.pillar-timeline {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

.pillar-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    transform: translateX(-50%);
    opacity: 0.2;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.pillar-item.row-reverse {
    flex-direction: row-reverse;
}

.pillar-item > * {
    flex: 1;
}

.pillar-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pillar-icon::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    background: var(--primary-glow);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
}

.pillar-icon svg {
    width: 64px;
    height: 64px;
    color: var(--primary);
    background: var(--bg-main);
    padding: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 20px rgba(153,0,0,0.1);
}

.pillar-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.pillar-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.pillar-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pillar-content .highlight-text {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

/* Final CTA */
.final-cta {
    padding: 150px 0 100px 0;
    text-align: center;
    background-color: var(--bg-alt);
}

.ebook-mockup {
    margin-bottom: 50px;
}

.ebook-mockup img {
    max-width: 100%;
    width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(153, 0, 0, 0.4));
    border-radius: 8px;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* Animations Triggered by JS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 20px 100px 20px;
    background-color: var(--bg-main);
    display: flex;
    justify-content: center;
}
.guarantee-content {
    background: linear-gradient(135deg, rgba(153,0,0,0.05) 0%, rgba(204,0,0,0.05) 100%);
    border: 1px solid rgba(153,0,0,0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(153, 0, 0, 0.08);
}
.guarantee-icon {
    width: 90px;
    height: 90px;
    color: var(--primary);
    flex-shrink: 0;
}
.guarantee-text {
    text-align: left;
}
.guarantee-text h3 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 12px;
}
.guarantee-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Authority Footer */
.authority-footer {
    background-color: var(--primary);
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    box-shadow: 0 -10px 30px rgba(153,0,0,0.2);
}
.authority-footer p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.authority-footer .disclaimer {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    font-style: normal;
    margin-bottom: 15px;
}
.authority-footer .copyright {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 0;
    font-style: normal;
}

/* Load Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

/* --- NEW STRUCTURAL OVERRIDES --- */
.hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
    padding-top: 15vh;
}
.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: left;
}
.hero-content p {
    text-align: left;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    border-radius: 12px;
}
.banner-strip {
    background-color: var(--primary);
    background: linear-gradient(90deg, var(--primary), #4a0000);
    color: white;
    padding: 35px 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}
.check-item p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
    margin: 0;
}
.check-icon {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    padding: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.check-icon svg { width: 20px; height: 20px; stroke-width: 3px; }

/* Anxiety Section */
.anxiety-section {
    padding: 80px 0;
    background-color: rgba(153, 0, 0, 0.02);
    text-align: center;
}
.anxiety-section h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
}
.anxiety-diagram {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-person {
    background: var(--bg-main);
    border: 3px solid var(--primary);
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(153,0,0,0.15);
}
.center-person span {
    font-weight: 700; color: var(--primary); margin-top: 8px; font-size: 1.1rem;
}
.thought-bubble {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 18px 25px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    font-weight: 600;
    color: var(--text-muted);
    max-width: 280px;
    text-align: center;
}
.bubble-1 { top: 30px; left: 0; }
.bubble-2 { top: 30px; right: 0; }
.bubble-3 { bottom: 60px; left: 40px; }
.bubble-4 { bottom: 60px; right: 40px; }
.bubble-5 { top: -20px; left: 50%; transform: translateX(-50%); }

/* 4 Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pillar-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    transition: transform 0.3s;
}
.pillar-card:hover {
    transform: translateY(-5px);
}
.pillar-card .icon-wrapper {
    background: rgba(153,0,0,0.05);
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
    color: var(--primary);
}
.pillar-card .icon-wrapper svg { width: 20px; height: 20px; }
.pillar-card h3 {
    font-size: 1.1rem; margin-bottom: 12px; color: var(--text-main); line-height: 1.3;
}
.pillar-card p {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; margin-bottom:0;
}

/* Responsive */
@media (max-width: 992px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { flex-direction: column; text-align: center; padding-top: 10vh; gap: 20px; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .hero-content h1, .hero-content p { text-align: center; }
    .cta-container { align-items: center !important; }
    .trust-badge { justify-content: center !important; }
    .anxiety-diagram { height: auto; flex-direction: column; gap: 20px; padding: 20px 0; }
    .thought-bubble { position: relative; top: auto; left: auto; right: auto; bottom: auto; transform: none; width: 100%; box-sizing: border-box; }
    .center-person { display: none; } /* Hide center avatar on small screens for layout simplicity */
    .checklist-grid { grid-template-columns: 1fr; }

    .hero h1 { font-size: 3rem; }
    
    .pillar-timeline::before { display: none; }
    .pillar-item, .pillar-item.row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .pillar-content .highlight-text {
        border-left: none;
        border-top: 3px solid var(--primary);
        padding-left: 0;
        padding-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .audience h2, .header-center h2, .pillars-intro h2 { font-size: 1.8rem; }
    .final-cta h2 { font-size: 2rem; }
    .ebook-mockup img { width: 300px; }
    .pillar-content { padding: 30px 20px; }
    .alert-box, .guarantee-content { flex-direction: column; text-align: center; }
    .guarantee-text { text-align: center; }
    
    .checkout-btn {
        font-size: 0.95rem;
        padding: 15px 20px;
        box-shadow: 0 4px 0 #800000, 0 5px 10px rgba(0,0,0,0.15);
    }
}
