:root {
    --bg-color: #0c0f12;
    --text-main: #ffffff;
    --text-muted: #8c93a1;
    --primary: #a3ff00;
    --primary-glow: rgba(163, 255, 0, 0.4);
    --secondary: #a3ff00;
    --accent: #a3ff00;
    --glass-bg: #15191e;
    --glass-border: #232830;
}

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

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

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

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

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* GLOBALS */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.text-gradient {
    color: var(--primary);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #0c0f12;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background: #b5ff33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-highlight {
    background: linear-gradient(135deg, #4F46E5, #00F0FF);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 240, 255, 0.4);
    border: none;
}

.btn-highlight:hover {
    background: linear-gradient(135deg, #4338CA, #00D4FF);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.6);
}

.btn-secondary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

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

@keyframes glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

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

@keyframes primary-pulse {
    0% { box-shadow: 0 0 0 0 rgba(163, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(163, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(163, 255, 0, 0); }
}

/* BACKGROUND ORBS */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(163, 255, 0, 0.15);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(163, 255, 0, 0.1);
    top: 20%;
    right: -50px;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(163, 255, 0, 0.05);
    bottom: -100px;
    left: 20%;
    opacity: 0.3;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
}

.logo strong {
    font-weight: 800;
}

/* HERO SECTION */
.hero {
    padding: 150px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* CONVERSION GRAPHIC */
.conversion-graphic {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(21, 25, 30, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: float-card 6s ease-in-out infinite;
}

.c-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15);
}

.c-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.c-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.c-icon.google {
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.c-icon.star {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.c-text strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.c-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.c-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4F46E5, #00F0FF);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
}

.fade-up-1 { animation-delay: 0s; }
.fade-up-2 { animation-delay: 1.5s; margin-left: 30px; }
.fade-up-3 { animation-delay: 3s; margin-left: 60px; }

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

/* SECTIONS */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.section-title.left {
    text-align: left;
    margin-bottom: 40px;
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    padding: 32px;
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

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

/* FEATURES */
.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.check {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-list h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.feature-list p {
    color: var(--text-muted);
}

.feature-card {
    padding: 32px;
}

.feature-card.highlight {
    background: var(--glass-bg);
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(163, 255, 0, 0.1);
}

.stat {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

/* OFFER SECTION */
.offer-section {
    position: relative;
    z-index: 1;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.offer-box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-box:not(.highlight) .border-gradient::before {
    background: var(--glass-border);
    opacity: 1;
}

.border-gradient {
    position: relative;
}
.border-gradient::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: var(--glass-border);
    z-index: -1;
    opacity: 1;
}

.offer-box.highlight .border-gradient::before {
    background: linear-gradient(45deg, #4F46E5, #00F0FF);
    opacity: 0.8;
}

.offer-header {
    background: rgba(0,0,0,0.4);
    padding: 32px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    border-radius: 16px 16px 0 0;
}

.offer-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-body .btn {
    margin-top: auto;
}

.price-container {
    text-align: center;
    margin-bottom: 32px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 8px;
}

.current-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--secondary);
    margin-bottom: 8px;
}

.currency { font-size: 1.5rem; font-weight: 600; margin-right: 8px; }
.value { font-size: 4rem; font-weight: 800; line-height: 1; }
.cents { font-size: 1.5rem; font-weight: 600; }
.cash-price { color: var(--text-muted); }

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 500;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.scarcity-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 16px;
    border-radius: 8px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(163, 255, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(163, 255, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(163, 255, 0, 0); }
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.shield {
    font-size: 2rem;
}

.guarantee p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-alternative {
    margin-top: 40px;
}

.link-whatsapp {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-whatsapp:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* FOOTER */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.footer .small {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* FAQ SECTION - TABELINHA */
.faq-section {
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--glass-border);
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item summary {
    padding: 24px 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #00F0FF;
}

.faq-item[open] summary {
    color: #00F0FF;
}

.faq-content {
    padding: 0 8px 24px;
    color: var(--text-muted);
    line-height: 1.6;
    animation: fadeInDown 0.3s ease-out;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-container, .features-wrapper {
        grid-template-columns: 1fr;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .sub-headline {
        margin: 0 auto 32px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .mockup-glass {
        transform: none;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 60px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .top-banner {
        font-size: 0.75rem;
    }
    .fade-up-2, .fade-up-3 {
        margin-left: 0;
    }
    .c-card {
        align-items: center !important;
        text-align: center;
    }
    .c-card > div:first-child {
        justify-content: center;
    }
}

/* TOP BANNER */
.top-banner {
    position: relative;
    width: 100%;
    min-height: 40px;
    padding: 8px 16px;
    background: linear-gradient(90deg, #4F46E5, #00F0FF, #4F46E5);
    background-size: 200% auto;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1001;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: gradientMove 3s linear infinite, glowBanner 2s ease-in-out infinite alternate;
}
.top-banner a {
    color: #FFD700;
    margin-left: 8px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
}
.top-banner a:hover {
    text-decoration: underline;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes glowBanner {
    0% { box-shadow: 0 0 5px rgba(0,240,255,0.2); }
    100% { box-shadow: 0 0 15px rgba(0,240,255,0.6); }
}
