@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- PREMIUM COATING CAATINGA RANCH DESIGN SYSTEM --- */
:root {
    --bg-page: #faf9f6;          /* Sand-cream - Organic light background */
    --bg-card: #ffffff;          /* Pure white card containers */
    --text-primary: #111513;     /* Charcoal/Off-Black for absolute contrast */
    --text-secondary: #3e4742;   /* Deep Sage/Charcoal for readability */
    
    /* Dynamic Brand & Conversion Colors */
    --brand-blue: #1e362d;       /* Forest/Sage Green (Fazenda Carnaúba) */
    --brand-blue-hover: #2b4e41;
    --canary-yellow: #c26d4a;    /* Terracotta Orange (Sun/Clay Accent) */
    --canary-yellow-hover: #a85c3b;
    
    --hotmart-green: #2e6f40;    /* Muted Organic Green Success Indicator */
    --hotmart-green-hover: #235431;
    --danger: #b23a22;           /* Deep Rust Red for error states */
    --warning-orange: #c26d4a;   /* Terracotta Orange for timers and alert boxes */
    
    --border-color: #e5e2db;     /* Soft sand border */
    --border-highlight: #cdcac2; /* Darker sand border */
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    --transition-fast: all 0.2s ease-in-out;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.03), 0 1px 2px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(30, 54, 45, 0.05), 0 2px 4px -2px rgba(30, 54, 45, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(30, 54, 45, 0.04), 0 4px 6px -4px rgba(30, 54, 45, 0.04);
    --shadow-premium: 0 20px 25px -5px rgba(30, 54, 45, 0.03), 0 8px 10px -6px rgba(30, 54, 45, 0.03);
}

/* --- BASE STYLES --- */
html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-display);
    color: var(--text-primary);
}

/* --- CONTAINER GLOBAL --- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- NAVIGATION HEADER --- */
header {
    height: 70px;
    background-color: #00245c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    text-decoration: none;
}

.logo span {
    color: var(--brand-blue);
}

.security-seal {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, 0.08);
}

.security-seal svg {
    fill: currentColor;
    width: 13px;
    height: 13px;
}

.exclusive-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.85rem;
    border-radius: 40px;
    font-family: var(--font-display);
}

/* --- SALES HERO SECTION --- */
.sales-hero {
    padding: 5rem 0;
    background: radial-gradient(100% 100% at 50% 0%, #ffffff 0%, var(--bg-page) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--brand-blue);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.05;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--brand-blue);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-btn-group {
    display: flex;
    gap: 1rem;
}

/* Hero Poster Image Showcase */
.hero-poster-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.hero-poster-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
}

.hero-poster {
    width: 100%;
    height: auto;
    display: block;
}

/* --- VALUE PROPOSITION SECTION (FEATURES) --- */
.section-padding {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 750;
    color: var(--brand-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.04);
    transform: translateY(-3px);
}

.feature-icon-box {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 10px;
    background-color: rgba(37, 99, 235, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
}

.feature-icon-box svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- ABOUT SPEAKER SECTION --- */
.speaker-section {
    background-color: #ffffff;
}

.speaker-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.speaker-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.speaker-quote-card {
    background-color: var(--bg-page);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--brand-blue);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.speaker-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(37, 99, 235, 0.08);
    user-select: none;
}

.speaker-quote-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.speaker-quote-author {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.speaker-bio {
    text-align: left;
}

.speaker-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.speaker-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.speaker-paragraph {
    color: var(--text-secondary);
    font-size: 0.975rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* --- CHECKOUT EMBEDDED SECTION --- */
.checkout-section {
    background-color: #f1f5f9;
    padding: 6rem 0;
}

/* --- FAQ ACCORDION SECTION --- */
.faq-section {
    background-color: #ffffff;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--bg-card);
    transition: var(--transition-fast);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    text-align: left;
}

.faq-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
    fill: none;
    stroke: var(--text-secondary);
    stroke-width: 2;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
}

.faq-content p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 500px;
    transition: max-height 0.3s ease-in-out;
}

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

/* --- THE REAL HOTMART-STYLE INTEGRATED CHECKOUT --- */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.checkout-form-col {
    padding: 3.5rem 3rem;
    border-right: 1px solid var(--border-color);
}

.checkout-summary-col {
    background-color: #f8fafc;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
}

/* --- WIZARD FORM LAYOUT --- */
.wizard-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

.steps-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--border-color);
    transform: translateY(-50%);
    z-index: 1;
}

.step-node {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    line-height: 1;
    transition: var(--transition-smooth);
}

.step-node.active {
    border-color: var(--brand-blue);
    background-color: var(--bg-card);
    color: var(--brand-blue);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.15);
}

.step-node.completed {
    border-color: var(--hotmart-green);
    background-color: var(--hotmart-green);
    color: #ffffff;
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.form-step.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.step-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: -1rem;
    margin-bottom: 0.5rem;
}

/* --- INPUT GROUPS & CONTROLS --- */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: left;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-primary);
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
    transition: var(--transition-fast);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: #ffffff;
}

.input-group input.invalid,
.input-group select.invalid {
    border-color: var(--danger);
    background-color: rgba(239, 68, 68, 0.01);
}

.input-group input.invalid:focus,
.input-group select.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.input-group input[readonly] {
    background-color: #f1f5f9;
    color: var(--text-secondary);
    cursor: not-allowed;
}

.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.input-group span.info-helper {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 0.2rem;
}

/* --- BUTTONS --- */
.btn {
    width: 100%;
    padding: 1.1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Primary Conversion Button (Terracotta Radiant Gradient & High-Contrast White Text) */
.btn, 
.btn-primary {
    background: linear-gradient(135deg, #e56a3c 0%, #b84318 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(184, 67, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #ef7c52 0%, #c94c1c 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(184, 67, 24, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
}

.btn:active,
.btn-primary:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(184, 67, 24, 0.3);
}

.btn:disabled,
.btn-primary:disabled {
    background: #cbd5e1;
    color: #94a3b8 !important;
    text-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Pulsing effect to draw eye attention (micro-interaction) */
.btn-pulse {
    animation: btnPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(184, 67, 24, 0.3), 0 0 0 0 rgba(184, 67, 24, 0.5);
    }
    50% {
        box-shadow: 0 8px 25px rgba(184, 67, 24, 0.45), 0 0 0 10px rgba(184, 67, 24, 0);
    }
}

/* Secondary Button (Neutral / Return) */
.btn-secondary {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    color: var(--text-primary);
    border-color: var(--border-highlight);
    transform: none;
    box-shadow: none;
}

/* Success Button (PIX Approved Webhook) */
.btn-success {
    background-color: var(--hotmart-green);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 194, 78, 0.15);
}

.btn-success:hover {
    background-color: var(--hotmart-green-hover);
    box-shadow: 0 6px 16px rgba(0, 194, 78, 0.25);
    transform: translateY(-1px);
}

/* --- PRODUCT CARD (CHECKOUT SIDE PANEL) --- */
.product-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: space-between;
}

.product-info-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.product-title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.product-subtitle {
    font-size: 0.85rem;
    font-weight: 650;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.product-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--brand-blue);
    stroke-width: 2;
    fill: none;
}

.price-box {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.price-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-val {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--brand-blue);
}

.secure-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.secure-footer svg {
    width: 13px;
    height: 13px;
}

/* --- PREMIUM CART SUMMARY --- */
.cart-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.cart-item-thumb {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cart-item-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.cart-item-subtitle {
    font-size: 0.75rem;
    color: var(--brand-blue);
    font-weight: 600;
    margin-top: 0.15rem;
}

.promo-badge-box {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background-color: rgba(255, 90, 0, 0.03);
    border: 1px dashed rgba(255, 90, 0, 0.25);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: var(--shadow-sm);
}

.promo-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    animation: firePulse 1.2s infinite ease-in-out;
}

@keyframes firePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15) rotate(5deg); }
    100% { transform: scale(1); }
}

.promo-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: left;
}

/* --- PIX PAYMENTS CONTAINERS --- */
.pix-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.countdown-timer {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.25rem;
    color: var(--warning-orange);
    letter-spacing: 0.02em;
    animation: pulseScale 1.5s infinite ease-in-out;
}

@keyframes pulseScale {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.qr-code-wrapper {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: inline-block;
}

.qr-code-image {
    width: 180px;
    height: 180px;
    display: block;
}

.pix-copy-paste-box {
    width: 100%;
    height: 70px;
    padding: 0.75rem;
    font-family: monospace;
    font-size: 0.75rem !important;
    background-color: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    resize: none;
    overflow-y: auto;
}

/* --- SIMULATION BANNER --- */
.simulation-banner {
    background-color: rgba(249, 115, 22, 0.03);
    border: 1px dashed var(--warning-orange);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.simulation-banner h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--warning-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.simulation-banner p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-msg {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.25rem 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transform: translateY(100px);
    opacity: 0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    text-align: left;
    max-width: 350px;
}

.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-msg.success {
    border-left: 5px solid var(--hotmart-green);
}

.toast-msg.error {
    border-left: 5px solid var(--danger);
}

/* --- FOOTER --- */
#main_footer {
    padding: 5rem 0;
    background-color: #0f172a;
    color: #94a3b8;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

#main_footer p {
    margin-bottom: 0.5rem;
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-btn-group {
        justify-content: center;
    }
    
    .speaker-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary-col {
        order: -1; /* Exibe o resumo do produto no topo em dispositivos móveis */
        padding: 2.5rem 1.5rem;
    }
    
    .checkout-form-col {
        padding: 3rem 1.5rem;
        border-right: none;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.35rem;
    }
    .hero-btn-group {
        flex-direction: column;
    }
    .section-title {
        font-size: 2rem;
    }
    .steps-indicator {
        padding: 0 0.5rem;
    }
}

/* --- ADMIN PANEL SYSTEM --- */
.admin-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.metric-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition-fast);
}

.metric-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.metric-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-blue);
    margin-top: 0.25rem;
}

.metric-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.admin-table-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    margin-bottom: 5rem;
}

.admin-filters-bar {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: #f8fafc;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.filters-left {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.filters-left input,
.filters-left select {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #ffffff;
    font-family: var(--font-sans);
}

.filters-left input:focus,
.filters-left select:focus {
    border-color: var(--brand-blue);
}

.admin-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.875rem;
}

.admin-table th {
    background-color: #f1f5f9;
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
}

.admin-table td {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    white-space: nowrap;
}

.admin-table tr:hover td {
    background-color: #f8fafc;
    color: var(--text-primary);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.65rem;
    border-radius: 40px;
}

.status-badge.status-paid {
    background-color: rgba(0, 194, 78, 0.08);
    color: var(--hotmart-green);
    border: 1px solid rgba(0, 194, 78, 0.2);
}

.status-badge.status-pending {
    background-color: rgba(249, 115, 22, 0.08);
    color: var(--warning-orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.status-badge.status-expired {
    background-color: rgba(239, 68, 68, 0.08);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.action-btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
    border-radius: 6px;
    box-shadow: none;
    width: auto;
    font-weight: 700;
}

/* Otimização de Funil de Vendas: Oculta distrações do site nas etapas 2 e 3 do checkout */
body.checkout-active #hero_section,
body.checkout-active #features_section,
body.checkout-active #speaker_section,
body.checkout-active #faq_section {
    display: none !important;
}

/* Scroll Reveal Base Styles (Sugestão 3) */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- PODIUM FLOWCHART SYSTEM --- */
.podium-flow-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: flex-end;
    margin-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
}

/* Connecting line behind cards on desktop */
.podium-flow-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 3px;
    background: repeating-linear-gradient(to right, transparent, transparent 4px, var(--border-highlight) 4px, var(--border-highlight) 12px);
    z-index: 1;
}

.podium-step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 1.75rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.podium-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-highlight);
}

/* Flow connector arrow inside card on desktop */
.podium-step-card::after {
    content: '→';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--canary-yellow);
    font-size: 1.5rem;
    font-weight: 800;
    z-index: 3;
}

.podium-step-card:last-child::after {
    display: none;
}

/* Elevating heights to represent a climbing podium */
.podium-step-card.step-1 {
    min-height: 280px;
    border-bottom: 5px solid var(--border-highlight);
}

.podium-step-card.step-2 {
    min-height: 310px;
    border-bottom: 5px solid var(--brand-blue);
}

.podium-step-card.step-3 {
    min-height: 340px;
    border-bottom: 5px solid var(--hotmart-green);
}

/* The Apex / Winner's Podium Card */
.podium-step-card.step-4 {
    min-height: 380px;
    background: linear-gradient(to bottom, #ffffff, #faf9f6);
    border: 2px solid var(--canary-yellow);
    border-bottom: 6px solid var(--canary-yellow);
    box-shadow: 0 12px 30px rgba(194, 109, 74, 0.12);
    animation: goldPulse 3s infinite alternate;
}

.podium-step-card.step-4:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(194, 109, 74, 0.25);
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 10px 25px rgba(194, 109, 74, 0.1);
    }
    100% {
        box-shadow: 0 18px 35px rgba(194, 109, 74, 0.22);
    }
}

.podium-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--canary-yellow);
    color: #ffffff;
    padding: 0.3rem 0.85rem;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 40px;
    box-shadow: 0 3px 10px rgba(194, 109, 74, 0.25);
    white-space: nowrap;
    font-family: var(--font-display);
}

.podium-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 950;
    line-height: 1;
    color: rgba(30, 54, 45, 0.04);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    user-select: none;
}

.podium-step-card.step-4 .podium-number {
    color: rgba(194, 109, 74, 0.08);
}

.podium-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 54, 45, 0.05);
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.podium-icon svg {
    width: 22px;
    height: 22px;
}

.podium-step-card.step-4 .podium-icon {
    background-color: rgba(194, 109, 74, 0.1);
    color: var(--canary-yellow);
}

.podium-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
}

.podium-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsividade do Pódio */
@media (max-width: 992px) {
    .podium-flow-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: stretch;
    }
    
    .podium-flow-container::before {
        top: 0;
        bottom: 0;
        left: 2rem;
        right: auto;
        width: 3px;
        height: 90%;
        background: repeating-linear-gradient(to bottom, transparent, transparent 4px, var(--border-highlight) 4px, var(--border-highlight) 12px);
    }
    
    .podium-step-card {
        min-height: auto !important;
        margin-left: 3rem;
    }
    
    .podium-step-card::after {
        content: '↓';
        right: auto;
        left: -3rem;
        top: auto;
        bottom: -2.25rem;
        transform: translateX(-50%);
    }
}

