:root {
    --primary-color: #00ff9d;
    --primary-dark: #00cc7a;
    --secondary-color: #7000ff;
    --accent-color: #ffe600;
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --bg-dark: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --gradient-main: linear-gradient(135deg, #00ff9d 0%, #00cc7a 100%);
    --gradient-purple: linear-gradient(135deg, #7000ff 0%, #a200ff 100%);
    --shadow-glow: 0 0 30px rgba(0, 255, 157, 0.2);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blur Effect */
.blur-content {
    filter: blur(12px);
    pointer-events: none;
    user-select: none;
    transition: filter 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary-color);
}

.btn-nav {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

/* Menu de Navegação */
.nav-links {
    display: flex;
    gap: 30px;
    margin: 0 20px;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.15) 0%, rgba(112, 0, 255, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    /* Reduced from 80px for performance */
    z-index: -1;
    /* Removed infinite animation to save GPU/Battery on mobile */
    opacity: 0.6;
}

@keyframes float-glow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, 50px);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 800px;
}

.hero-text.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-container {
    margin-bottom: 25px;
}

.badge {
    background: rgba(255, 230, 0, 0.15);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 230, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-sub strong {
    color: var(--text-color);
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-glow);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    min-width: 300px;
}

.btn-primary div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-primary small {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: none;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 157, 0.4);
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-badges.justify-center {
    justify-content: center;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges i {
    color: var(--primary-color);
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--primary-color);
    padding: 10px 0;
    transform: rotate(-2deg) scale(1.05);
    margin-bottom: 80px;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    /* Slower = smoother */
    will-change: transform;
    /* Hint for GPU */
}

.ticker-item {
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pain Points */
.pain-points {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.loser {
    border-color: rgba(255, 59, 59, 0.2);
}

.loser h3 {
    color: #ff3b3b;
}

.loser li i {
    color: #ff3b3b;
}

.winner {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(0, 255, 157, 0.05) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.winner h3 {
    color: var(--primary-color);
}

.winner li i {
    color: var(--primary-color);
}

/* Steps */
.steps {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0a0a);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 10px;
    right: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.step-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
}

/* Proof Section */
.proof {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.1), transparent 60%);
}

.proof-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
}

.proof-wrapper.full-width {
    justify-content: center;
    text-align: center;
}

.proof-text {
    flex: 1;
}

.proof-text.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.big-stat {
    margin: 30px 0;
}

.big-stat .percent {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
}

.big-stat .label {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.story {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.story strong {
    color: var(--text-color);
}

.btn-small {
    padding: 12px 30px;
    font-size: 1rem;
    min-width: auto;
}

.caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.user-info small {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.stars {
    color: var(--accent-color);
    margin-top: 15px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #080808;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(to bottom, var(--bg-dark), #051a10);
}

.cta-box {
    background: linear-gradient(135deg, #111, #0a0a0a);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(0, 255, 157, 0.2);
    box-shadow: 0 0 50px rgba(0, 255, 157, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.price-tag {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old {
    text-decoration: line-through;
    color: #ff3b3b;
    font-size: 1.2rem;
}

.new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.btn-large {
    padding: 25px 60px;
    font-size: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020202;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.copyright {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 255, 157, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-small {
    animation: pulse 3s infinite;
}

/* Signal Preview (Telegram Mockup) */
.signal-preview {
    padding: 80px 0;
    background: var(--bg-dark);
}

.telegram-mockup {
    max-width: 500px;
    margin: 0 auto;
    background: #1c242f;
    /* Telegram Dark BG */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.telegram-header {
    background: #232e3c;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tg-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: #000;
}

.tg-info {
    display: flex;
    flex-direction: column;
}

.tg-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.tg-subs {
    font-size: 0.8rem;
    color: #8e9eb6;
}

.telegram-body {
    padding: 20px;
    background-image: url('https://w0.peakpx.com/wallpaper/818/148/HD-wallpaper-whatsapp-background-cool-dark-green-new-theme-whatsapp.jpg');
    /* Generic chat bg pattern */
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgba(14, 22, 33, 0.95);
}

.tg-message {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    align-items: flex-start;
}

.tg-bubble {
    background: #2b5278;
    padding: 15px;
    border-radius: 15px 15px 15px 0;
    max-width: 90%;
    color: #fff;
    position: relative;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tg-bubble.win {
    background: rgba(0, 255, 157, 0.15);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 15px 15px 15px 0;
}

.tg-title {
    color: #ffcc00;
    font-weight: 700;
    margin-bottom: 10px;
}

.tg-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* Transparency Box */
.transparency-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 20px 0 30px;
    border-radius: 0 10px 10px 0;
}

.transparency-box h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transparency-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.transparency-box strong {
    color: #fff;
}

/* Modal Styles */
.modal {
    display: none;
    /* Controlled by JS */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(17, 17, 17, 0.95);
    margin: auto;
    padding: 50px 40px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    width: 90%;
    max-width: 550px;
    border-radius: 25px;
    box-shadow: 0 0 60px rgba(0, 255, 157, 0.15);
    position: relative;
    text-align: center;
    animation: modalFloat 6s ease-in-out infinite;
}

@keyframes modalFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-step h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.modal-step p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.question-text {
    font-size: 1.3rem !important;
    color: #fff !important;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 20px;
    border-radius: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-option:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.2);
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.result-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-box strong {
    color: var(--primary-color);
}

.btn-modal {
    width: 100%;
    justify-content: center;
    min-width: auto;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .comparison-grid,
    .steps-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .proof-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .proof-text {
        order: 2;
    }

    .proof-visual {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .cta-box h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .btn-primary {
        width: 100%;
        min-width: auto;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .ticker-item {
        font-size: 1rem;
    }

    /* Hide floating cards on very small screens to prevent overlap,
       or position them better if desired. Here we hide for cleanliness. */
    .floating-card {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .btn-option {
        font-size: 1rem;
        padding: 15px;
    }
}