:root {
    /* Color Palette */
    --primary-blue: #1e40af;
    --primary-light: #3b82f6;
    --secondary-blue: #0ea5e9;
    --accent-green: #10b981;
    --accent-green-hover: #059669;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #dcfce7 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.4);
    
    /* Border Radius */
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
}

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

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 4rem 0;
}

.padding-y {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-green { color: var(--accent-green); }
.text-blue { color: var(--primary-light); }
.text-orange { color: #f97316; }
.text-yellow { color: #eab308; }
.text-pink { color: #ec4899; }
.text-purple { color: #a855f7; }
.text-gray { color: var(--text-light); }
.text-primary { color: var(--primary-blue); }

/* Typography Classes */
.section-title {
    font-size: 2.25rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.title-decorated {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.title-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 7rem;
    background-color: #020617; /* Very dark slate, almost black */
    color: white;
    z-index: 1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: float-orb 15s ease-in-out infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.4);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.3);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.2);
    top: 30%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float-orb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.relative { position: relative; }
.z-10 { z-index: 10; }

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.text-gradient-gold {
    background: linear-gradient(to right, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
    line-height: 1.8;
}

.hero-video-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.hero-video-wrapper.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.glass-overlay {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: transform 0.3s ease;
}

.hero-video-wrapper:hover .hero-image {
    transform: scale(1.02);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(16, 185, 129, 0.9); /* Green accent */
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    transition: all var(--transition-fast);
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #10b981;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.8);
}

.play-button-overlay .icon-play {
    color: white;
    width: 40px;
    height: 40px;
    margin-left: 5px; /* Visual center offset */
}

.ripple::before, .ripple::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.4);
    animation: ripple-anim 2s linear infinite;
}

.ripple::after {
    animation-delay: 1s;
}

@keyframes ripple-anim {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.super-pulse {
    font-size: 1.35rem;
    padding: 1.25rem 3.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    animation: super-pulse-anim 2s infinite;
}

@keyframes super-pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7), 0 10px 20px rgba(0,0,0,0.5); }
    70% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0), 0 10px 20px rgba(0,0,0,0.5); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0), 0 10px 20px rgba(0,0,0,0.5); }
}

.hero-guarantee-text {
    margin-top: 1.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-guarantee-text svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

/* --- FEATURES GRID (Como Funciona & O Que Recebe) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.premium-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255,255,255,1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.premium-card.outline-style {
    background: transparent;
    border: 2px dashed #cbd5e1;
    box-shadow: none;
}

.premium-card.outline-style:hover {
    background: white;
    border: 2px solid transparent;
    box-shadow: 0 20px 40px -12px rgba(16, 185, 129, 0.15), inset 0 0 0 1px #10b981;
}

.premium-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-icon-box svg {
    width: 32px;
    height: 32px;
}

.premium-card:hover .premium-icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Icon box colors */
.box-green { background-color: #ecfdf5; box-shadow: 0 0 0 8px rgba(236,253,245,0.6); }
.premium-card:hover .box-green { box-shadow: 0 0 0 12px rgba(236,253,245,0.9); }

.box-blue { background-color: #eff6ff; box-shadow: 0 0 0 8px rgba(239,246,255,0.6); }
.premium-card:hover .box-blue { box-shadow: 0 0 0 12px rgba(239,246,255,0.9); }

.box-purple { background-color: #f5f3ff; box-shadow: 0 0 0 8px rgba(245,243,255,0.6); }
.premium-card:hover .box-purple { box-shadow: 0 0 0 12px rgba(245,243,255,0.9); }

.box-orange { background-color: #fff7ed; box-shadow: 0 0 0 8px rgba(255,247,237,0.6); }
.premium-card:hover .box-orange { box-shadow: 0 0 0 12px rgba(255,247,237,0.9); }

.box-yellow { background-color: #fefce8; box-shadow: 0 0 0 8px rgba(254,252,232,0.6); }
.premium-card:hover .box-yellow { box-shadow: 0 0 0 12px rgba(254,252,232,0.9); }

.box-pink { background-color: #fdf2f8; box-shadow: 0 0 0 8px rgba(253,242,248,0.6); }
.premium-card:hover .box-pink { box-shadow: 0 0 0 12px rgba(253,242,248,0.9); }

.premium-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.premium-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 1.5rem 2rem 1.5rem;
    margin: 0 -1.5rem 2rem -1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    margin-top: 2.5rem;
    flex: 0 0 82%;
    scroll-snap-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 0 0 3rem 0;
        padding: 0;
        overflow-x: visible;
        scroll-behavior: auto;
    }
    .testimonial-card {
        flex: unset;
    }
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    object-fit: cover;
    background: white;
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

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

.bonus-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px dashed #cbd5e1;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.bonus-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.bonus-feature-img {
    width: calc(100% + 3rem);
    max-width: none;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    aspect-ratio: 1;
    object-fit: cover;
    border: none;
    display: block;
}

.bonus-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.bonus-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.bonus-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.875rem;
}

.free {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.25rem;
}

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: end;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 3px solid var(--accent-green);
    box-shadow: var(--shadow-xl);
    padding: 4rem 2rem;
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.pulse-glow {
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.plans-mockup-wrapper {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.plans-mockup-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    text-align: center;
}

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

.plans-mockup-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: none;
    transition: transform var(--transition-fast);
}

.plans-mockup-grid img:hover {
    transform: scale(1.05);
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--text-dark);
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.25rem;
}

.price .amount {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.price .cents {
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-note {
    font-size: 0.85rem !important;
    color: var(--accent-green) !important;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0 !important;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.pricing-features li span {
    text-align: left;
    line-height: 1.4;
    font-size: 0.95rem;
}

.pricing-features li span strong {
    color: var(--primary-blue);
}

.pricing-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}

.pricing-card .cta-button {
    width: 100%;
    padding: 1.25rem 1rem;
    font-size: 1.125rem;
}


/* --- GUARANTEE --- */
.guarantee {
    background: var(--gradient-blue);
    color: white;
}

.guarantee-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    max-width: 900px;
}

.seal {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: var(--gradient-gold);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 4px dashed rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.seal-inner {
    background: radial-gradient(circle, #fbbf24, #d97706);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid white;
}

.seal-top { font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; }
.seal-number { font-size: 3.5rem; font-family: var(--font-heading); font-weight: 900; line-height: 1; }
.seal-bottom { font-size: 1.2rem; font-weight: 800; }

.guarantee-content h2 {
    color: white;
    margin-bottom: 1rem;
    text-align: left;
}

.guarantee-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .guarantee-container {
        flex-direction: column;
        text-align: center;
    }
    .guarantee-content h2 { text-align: center; }
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fdfdfd;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-gray);
}

/* --- SOBRE A AUTORA --- */
.autora {
    background: #f8faff;
}

.autora-container {
    text-align: center;
    max-width: 600px;
}

.autora-foto-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

.autora-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.autora-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.autora-badge svg {
    width: 20px;
    height: 20px;
}

.autora-nome {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.autora-cargo {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.autora-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.autora-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    font-weight: 600;
}

.autora-quote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    position: relative;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

/* --- FOOTER --- */

.site-footer {
    padding: 3rem 0;
    background: #0f172a;
    color: #94a3b8;
}

.site-footer p { margin-bottom: 0.5rem; }
.disclaimer { font-size: 0.75rem; opacity: 0.6; max-width: 800px; margin: 0 auto; }


/* --- ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* --- RESPONSIVNESS --- */
@media (max-width: 768px) {
    .section-padding { padding: 3rem 0; }
    .padding-y { padding: 3.5rem 0; }
    
    .pricing-grid {
        align-items: center;
    }
    
    .pricing-card.popular {
        padding: 3rem 1.5rem;
    }
}

/* --- UPSELL MODAL --- */
.upsell-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.upsell-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.upsell-card {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-xl);
    border: 3px solid var(--accent-green);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.upsell-overlay.active .upsell-card {
    transform: translateY(0) scale(1);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(0,0,0,0.3);
    color: #0f172a;
}

.upsell-header {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    text-align: center;
    color: white;
}

.upsell-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.upsell-header h2 {
    font-size: 1.1rem;
    line-height: 1.35;
    color: white;
}

.upsell-header h2 strong {
    color: #facc15;
}

.upsell-body {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    text-align: center;
}

.upsell-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    border: 3px solid #f8fafc;
}

.upsell-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upsell-content p {
    color: #334155;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.upsell-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.upsell-price span {
    font-size: 1.75rem;
    color: var(--accent-green);
    display: block;
    line-height: 1.1;
    margin-top: 0.25rem;
}

.upsell-actions {
    padding: 0 1.5rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.upsell-btn-yes {
    font-size: 0.9rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.upsell-btn-no {
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: underline;
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    width: 100%;
    display: block;
}

.upsell-btn-no:hover {
    color: #94a3b8;
}

.hidden {
    display: none !important;
}
