/* --- Base Setup --- */
:root {
    --primary: #8b5cf6; /* Vibrant Purple */
    --primary-light: #a78bfa;
    --primary-dark: #6d28d9;
    --secondary: #ec4899; /* Pink/Pink-Purple */
    --secondary-light: #f472b6;
    --accent: #10b981; /* Emerald Green for success/checks */
    --accent-glow: rgba(16, 185, 129, 0.4);
    
    --bg-dark: #0f1016; /* Deep futuristic background */
    --bg-darker: #090a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --gold: #fbbf24;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.5));
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Typography --- */
h1, h2, h3, h4, .hero-title, .section-title {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* --- Layout --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.dark-bg {
    background-color: rgba(0, 0, 0, 0.2);
}

.divider-top {
    border-top: 1px solid var(--glass-border);
}
.divider-bottom {
    border-bottom: 1px solid var(--glass-border);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* --- Background Effects (Futuristic) --- */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-dark);
    animation-delay: 0s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: #9d174d; /* deep pink */
    animation-delay: -5s;
    animation-duration: 25s;
}

.orb-3 {
    top: 40%;
    left: 60%;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.2); /* faint emerald */
    animation-delay: -10s;
    animation-duration: 30s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black, transparent);
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* --- Components --- */
/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn i {
    margin-left: 0.5rem;
    vertical-align: middle;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
}

/* Base styles for the outer glowing border */
.btn-wrapper {
    display: inline-block;
    padding: 6px;
    border-radius: 56px; /* slightly larger than button */
    background: rgba(255, 255, 255, 0.05); /* very subtle dark ring */
    border: 1px solid rgba(255, 255, 255, 0.08); /* inner subtle border */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5); /* deep effect */
}

.btn-hero {
    display: block;
    width: 100%; /* fills wrapper */
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.glow-btn.pulse, .btn-wrapper.pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4), inset 0 0 10px rgba(0,0,0,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(236, 72, 153, 0), inset 0 0 10px rgba(0,0,0,0.5); }
    100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0), inset 0 0 10px rgba(0,0,0,0.5); }
}

/* --- Hero Section --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: flex-start; /* Alinha mais para cima em vez de center */
    justify-content: center;
    text-align: center;
    padding-top: 8rem; /* Espaço do topo até o conteúdo */
}

.hero-container {
    max-width: 900px;
}

.tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-light);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.secure-badge {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.secure-badge i {
    color: var(--accent);
}

/* --- Pain Points --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.section-header span {
    color: var(--secondary-light);
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper.red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.icon-wrapper.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.icon-wrapper.gold {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.glass-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: var(--glass-bg);
}

.benefit-texts h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.benefit-texts p {
    color: var(--text-muted);
}

/* --- Bonuses --- */
.bonus-card {
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-strike {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.bonus-total {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.bonus-total .strike {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 1rem;
}

.bonus-total .free-text {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 0 20px var(--accent-glow);
}

/* --- Pricing Section --- */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.premium {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

@media (max-width: 768px) {
    .pricing-card.premium {
        transform: scale(1);
    }
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0.5rem 0;
}

.current-price .big {
    font-size: 3.5rem;
    line-height: 1;
}

.savings {
    font-size: 0.9rem;
    font-weight: 600;
}

.green-text { color: var(--accent); }

.social-proof-tag {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.features-list {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.features-list i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.highlight-item {
    color: var(--text-main) !important;
}
.highlight-item i {
    color: var(--primary-light);
}

.pricing-card .btn {
    width: 100%;
}

/* --- Testimonials --- */
.stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quote {
    font-style: italic;
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem;
    color: var(--text-main) !important;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.bg-gradient-1 { background: linear-gradient(135deg, #f43f5e, #fb923c); }
.bg-gradient-2 { background: linear-gradient(135deg, #8b5cf6, #3b82f6); }
.bg-gradient-3 { background: linear-gradient(135deg, #10b981, #3b82f6); }

.author-info h4 {
    font-size: 1rem;
    margin: 0;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Countdown --- */
.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
}

.time-block span {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-light);
    line-height: 1;
}

.time-block label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.colon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-muted);
    padding-bottom: 2rem;
}

/* --- Details Section --- */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.detail-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.detail-box i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.detail-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.detail-box p {
    color: var(--text-muted);
}

.alert-card {
    border-color: rgba(239, 68, 68, 0.2);
}

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

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-light);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 300px;
}

/* --- Guarantee --- */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: left;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(251,191,36,0.05));
    border-color: rgba(251, 191, 36, 0.2);
}

.guarantee-icon i {
    font-size: 4rem;
}

.guarantee-text h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}
.guarantee-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

/* --- Footer --- */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* --- Animations (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 3rem;
        align-items: flex-start;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timer {
        gap: 0.5rem;
    }
    
    .time-block {
        min-width: 70px;
        padding: 1rem;
    }
    
    .time-block span {
        font-size: 2rem;
    }
}
