:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --primary: #00f3ff;
    /* Cyan Neon */
    --primary-dim: #00f3ff40;
    --secondary: #ffbd00;
    /* Amber Warning */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --gradient-main: linear-gradient(90deg, #00f3ff 0%, #0066ff 100%);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Urgency Bar */
.urgency-bar {
    background: var(--secondary);
    color: #000;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform: rotateX(60deg) scale(2);
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: rotateX(60deg) scale(2) translateY(0);
    }

    100% {
        transform: rotateX(60deg) scale(2) translateY(50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    box-shadow: 0 0 10px var(--primary-dim);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 0 20px var(--primary-dim);
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px var(--primary);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Marquee */
.marquee-container {
    background: var(--primary);
    color: #000;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-1deg) scale(1.02);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.marquee-content span {
    margin: 0 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.highlight {
    color: var(--secondary);
}

/* Problem Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ff4d4d;
}

.radar-scan {
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background:
        linear-gradient(90deg, transparent 49%, rgba(0, 243, 255, 0.1) 50%, transparent 51%),
        linear-gradient(transparent 49%, rgba(0, 243, 255, 0.1) 50%, transparent 51%),
        radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
    box-shadow: 0 0 30px var(--primary-dim), inset 0 0 20px rgba(0, 243, 255, 0.1);
    overflow: hidden;
}

.radar-scan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(0, 243, 255, 0.1) 20%, rgba(0, 243, 255, 0.8) 40%, transparent 40%);
    animation: radarSpin 2s linear infinite;
    border-right: 1px solid rgba(0, 243, 255, 0.8);
}

.radar-blip {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    top: 25%;
    left: 70%;
    box-shadow: 0 0 15px var(--secondary);
    animation: blipPulse 2s infinite;
    opacity: 0;
    z-index: 2;
}

@keyframes radarSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes blipPulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    35% {
        opacity: 0;
    }

    40% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Solution Section */
.solution-section {
    background: #0a0a0a;
}

.center-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.badge-blue {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(0, 243, 255, 0.05);
}

.feature-card i {
    color: var(--primary);
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

.bonus-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    background: var(--secondary);
    color: #000;
    display: inline-block;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 3px;
    margin-bottom: 15px;
}

/* Guarantee */
.guarantee-box {
    background: #111;
    border: 1px solid #333;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    color: var(--secondary);
}

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

details {
    background: #111;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

details[open] {
    background: #161616;
}

summary {
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    line-height: 1;
}

details[open] summary::after {
    content: '-';
}

details p {
    border-top: 1px solid #222;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.5;
}

/* Sales Notification */
.notification-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #111;
    border: 1px solid var(--primary);
    border-left: 5px solid var(--primary);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.3;
}

.notify-name {
    font-weight: 700;
    color: #fff;
}

.notify-action {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.notify-plan {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* ========================================
   NOVA SEÇÃO DE PREÇOS - DESIGN PREMIUM
   ======================================== */

.pricing-section-new {
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
    padding: 100px 0;
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card-new {
    background: #1A1A1A;
    border-radius: 25px;
    padding: 45px 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

/* PACOTE BÁSICO - Cinza Escuro */
.basic-plan {
    background: #1A1A1A;
    border: 2px solid #333;
}

.basic-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
    border-color: #555;
}

/* PACOTE BLINDADO - Azul Neon */
.premium-plan {
    background: linear-gradient(145deg, #00E6FF15, #00CFFF10);
    border: 3px solid #00E6FF;
    box-shadow: 0 0 40px rgba(0, 230, 255, 0.3);
    transform: scale(1.05);
}

.premium-plan:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 15px 60px rgba(0, 230, 255, 0.5);
    border-color: #00FFFF;
}

/* Selo "MAIS VENDIDO" */
.best-seller-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E6FF, #00CFFF);
    color: #000;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    box-shadow: 0 5px 20px rgba(0, 230, 255, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(0, 230, 255, 0.5);
    }

    50% {
        box-shadow: 0 5px 30px rgba(0, 230, 255, 0.8);
    }
}

/* Títulos dos Planos */
.plan-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.basic-plan .plan-title {
    color: #fff;
}

.premium-plan .plan-title {
    background: linear-gradient(135deg, #00E6FF, #00FFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulos */
.plan-subtitle {
    color: #999;
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.premium-plan .plan-subtitle {
    color: #00E6FF;
    font-weight: 600;
}

/* Lista de Features */
.plan-features {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.plan-features li.bonus-item {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-plan .plan-features li.bonus-item {
    border-top-color: rgba(0, 230, 255, 0.3);
}

/* Ícones de Check Circulares */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 900;
    flex-shrink: 0;
}

.premium-plan .check-icon {
    background: linear-gradient(135deg, #00E6FF, #00CFFF);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 230, 255, 0.5);
}

/* Preços */
.plan-price {
    text-align: center;
    margin: 30px 0 25px;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: #666;
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-new {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -2px;
}

.basic-plan .price-new {
    color: #fff;
}

.premium-plan .price-new {
    background: linear-gradient(135deg, #00E6FF, #00FFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botões dos Planos */
.btn-plan {
    display: block;
    width: 100%;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-basic {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-basic:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-premium {
    background: linear-gradient(135deg, #00E6FF, #00CFFF);
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 230, 255, 0.4);
}

.btn-premium:hover {
    background: linear-gradient(135deg, #00FFFF, #00E6FF);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 230, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .notification-toast {
        left: 10px;
        bottom: 10px;
        right: 10px;
        max-width: none;
        width: auto;
    }

    .pricing-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .premium-plan {
        transform: scale(1);
    }

    .premium-plan:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .plan-title {
        font-size: 1.8rem;
    }

    .price-new {
        font-size: 3rem;
    }

    .pricing-card-new {
        padding: 35px 25px;
    }
}