:root {
    /* New App-Driven Design System */
    --bg-cyber: #051A15;
    /* Cybernetic Dark Green Base */
    --gold-app: #FFD700;
    /* ThorVPN Gold */
    --gold-hover: #EBC000;
    --cyan-neon: #00FFC4;
    /* App Power Ring Cyan/Mint */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --grid-line: rgba(0, 255, 255, 0.05);
    /* Precise Radar Grid */

    /* Shadows & Glows */
    --shadow-cyan: 0 0 15px rgba(0, 255, 255, 0.5);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.1);
    --shadow-gold: 0 0 25px rgba(255, 215, 0, 0.4);
    --gold-glow: rgba(255, 215, 0, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(0, 255, 196, 0.15);
    --threat-red: #ff4444;
}

.release-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold-app);
    color: var(--gold-app);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--gold-glow);
    animation: gold-pulse 2s infinite;
    font-family: 'Russo One', sans-serif;
}

@keyframes gold-pulse {
    0% {
        box-shadow: 0 0 10px var(--gold-glow);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 0 25px var(--gold-glow);
        transform: translateY(-5px);
    }

    100% {
        box-shadow: 0 0 10px var(--gold-glow);
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cyber);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;

    /* Anti-Copy */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    -webkit-user-drag: none;

    /* Radar/Blueprint Grid Background */
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 35px 35px;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

@font-face {
    font-family: 'Russo One';
    src: url('RussoOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
.logo {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo {
    font-size: 3.5rem;
    padding: 15px 0;
    color: var(--text-primary);
    transition: font-size 0.3s ease;
}

.logo span {
    color: var(--cyan-neon);
    text-shadow: var(--shadow-cyan);
}

/* Updated Typography */
.urgent-headline {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.highlight {
    color: var(--cyan-neon);
    text-shadow: var(--shadow-cyan);
}

.gold-text {
    color: var(--gold-app);
}

.sub-headline {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 25px;
}

.title-gold {
    color: var(--gold-app);
    font-size: 2.8rem;
    margin-bottom: 25px;
}

/* Standardized Section Titles (High-Impact Tech Style) */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: #fff;
    font-family: 'Russo One', sans-serif;
    text-shadow: 0 0 15px rgba(0, 255, 196, 0.3);
}

/* Gold variation for specific sections */
.section-title.gold-text {
    color: var(--gold-app);
    text-shadow: 0 0 20px var(--gold-glow);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--cyan-neon);
    box-shadow: 0 0 15px var(--cyan-neon);
    border-radius: 2px;
}

.section-title.gold-text::after {
    background: var(--gold-app);
    box-shadow: 0 0 15px var(--gold-glow);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
}

/* Primary Button - Thor Style */
.btn {
    display: inline-block;
    padding: 20px 45px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--gold-app);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.pulse-btn {
    animation: app-pulse-gold 2.5s infinite;
}

@keyframes app-pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Hero Section */
section {
    padding: 120px 0;
}

.hero {
    min-height: auto;
    padding: 60px 0 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Prevent glow from creating scrollbars */
}

.hero-layout-3blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.hero-block-top {
    width: 100%;
}

.hero-block-middle {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.hero-block-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
}

.centered-cta {
    align-items: center;
    text-align: center;
}

.centered-cta .cta-action-group {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Hero Section Refinements */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
}

.cta-action-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.benefit-sep {
    opacity: 0.3;
}

.trust-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 800;
}

.trust-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    padding: 6px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.trust-pill i {
    color: var(--cyan-neon);
    font-size: 0.9rem;
}

.trust-pill:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--cyan-neon);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
}

/* Placeholders */
.helmet-placeholder {
    height: 550px;
    width: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 196, 0.08) 0%, transparent 70%);
    border: 1px dashed rgba(0, 255, 196, 0.3);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Benefits (Glassmorphism Cards) */
.benefits {
    background: radial-gradient(circle at 10% 20%, rgba(0, 255, 196, 0.03) 0%, transparent 40%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--glass-bg);
    padding: 45px;
    border-radius: 20px;
    border: var(--glass-border);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cyan-neon);
    box-shadow: var(--shadow-cyan);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--cyan-neon);
    text-shadow: var(--shadow-cyan);
}

.hero-visual {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media (min-width: 993px) {
    .hero-visual {
        padding: 0;
    }
}

/* Hero Image Floating Animation & God-mode Refinements */
.hero-img-floating {
    width: 100%;
    max-width: 800px;
    height: auto;
    /* Softened God-mode Contour Glow */
    filter: drop-shadow(0 0 15px var(--cyan-neon)) drop-shadow(0 0 30px rgba(0, 255, 196, 0.15));
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

/* Shadow weight/reflection under the logo */
.hero-visual::after {
    content: '';
    position: absolute;
    bottom: 20px;
    width: 60%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 196, 0.3) 0%, transparent 80%);
    filter: blur(5px);
    animation: shadow-pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

@keyframes shadow-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.15;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}



/* App Screen Carousel Styles */
/* 2. A Tela do Celular (Onde ocorre o corte das pontas) */
.slider-container {
    position: relative;
    border-radius: 16px;
    /* Borda arredondada da tela */
    overflow: hidden;
    /* Isso força o corte das pontas quadradas das imagens */
    background: #000;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

/* 3. As Imagens do App (Ajuste para caber na tela) */
.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    /* Acompanha o corte da tela */
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 10px;
}

/* 4. Botões de Navegação (Estilo Glassmorphism Premium) */
.nav-btn {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--cyan-neon);
    color: var(--cyan-neon);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn:hover {
    background: var(--cyan-neon);
    color: #000;
    box-shadow: 0 0 15px var(--cyan-neon);
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--cyan-neon);
    box-shadow: var(--shadow-cyan);
    width: 25px;
    border-radius: 5px;
}

/* How it Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* 1. A Capa do Celular (O Container Externo) */
.mockup-container {
    background: var(--bg-cyber);
    border-radius: 24px;
    border: 3px solid rgba(0, 255, 196, 0.3);
    /* Borda Ciano neon */
    box-shadow: var(--glow-cyan);
    padding: 8px;
    /* Margem interna simulando a borda do aparelho */
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pulse-glow {
    box-shadow: 0 0 30px rgba(0, 255, 196, 0.2);
    animation: app-ring-pulse 3s infinite;
}

@keyframes app-ring-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 196, 0.5);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(0, 255, 196, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 196, 0);
    }
}

.hero-status-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* Trust & Proof Styling - Centered */
.live-counter-section {
    padding: 20px 0 40px;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.02));
}

.live-counter {
    background: rgba(6, 8, 15, 0.9);
    padding: 15px 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0, 255, 136, 0.05);
    backdrop-filter: blur(15px);
}

.counter-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.counter-num {
    color: var(--cyan-neon);
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Russo One', sans-serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.counter-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    position: relative;
}

.live-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: live-ring 1.5s ease-out infinite;
}

@keyframes live-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.highlight-text {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--cyan-neon);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Legal Pages Styling */
.legal-content {
    padding: 150px 0;
    min-height: 80vh;
}

.legal-panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 196, 0.1);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.legal-panel h1 {
    margin-bottom: 30px;
    color: var(--gold-app);
}

.legal-panel p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-email {
    color: var(--gold-app);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.contact-email:hover {
    text-shadow: var(--shadow-gold);
    color: #fff;
}

/* Footer & Desktop/Mobile Transitions */
.footer {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.footer h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.footer-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cyan-neon);
}

/* Sticky Mobile CTA (Glassmorphism style) */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(5, 26, 21, 0.85);
    backdrop-filter: blur(15px);
    display: none;
    z-index: 1000;
    border-top: 1px solid var(--gold-app);
}

.btn-full {
    width: 100%;
    background-color: var(--gold-app);
    color: #000;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(212, 163, 20, 0.4);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .urgent-headline {
        font-size: 2.8rem;
    }

    .hero-grid,
    .how-it-works-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sub-headline {
        margin-inline: auto;
    }

    .trust-badges {
        justify-content: center;
    }

    .sticky-cta {
        display: block;
    }

    .hero-visual {
        order: -1;
    }

    .hero-img-floating {
        max-width: 280px;
        margin: 0 auto;
    }

    section {
        padding: 60px 0;
    }

    .legal-panel {
        padding: 40px 25px;
    }
}

/* Smartphone Specific Optimization */
@media (max-width: 576px) {
    .urgent-headline {
        font-size: 2.2rem;
    }

    .sub-headline {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .btn {
        padding: 18px 30px;
        width: 100%;
        font-size: 1rem;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .slider-container {
        max-width: 280px;
    }

    .slide {
        height: 480px;
    }

    .footer h3 {
        font-size: 1.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .legal-panel h1 {
        font-size: 1.8rem;
    }
}

/* --- Growth Optimization Sections --- */

/* Problem Agitation Card Grid */
.problem-agitation {
    padding: 120px 0;
    background: #081210;
    position: relative;
    overflow: hidden;
}

.problem-agitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--threat-red), transparent);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 15px auto 60px;
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.threat-item {
    background: rgba(255, 68, 68, 0.02);
    border: 1px solid rgba(255, 68, 68, 0.08);
    padding: 50px 35px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.threat-item:hover {
    border-color: var(--threat-red);
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.15);
    transform: translateY(-10px);
    background: rgba(255, 68, 68, 0.05);
}

.threat-icon {
    font-size: 3rem;
    color: var(--threat-red);
    margin-bottom: 25px;
}

/* Pricing Grid Component */
.pricing {
    padding: 120px 0;
    background: var(--bg-cyber);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--gold-app);
    background: rgba(212, 163, 20, 0.05);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 163, 20, 0.1);
    z-index: 2;
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-app);
    color: #000;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 20px 0;
    color: #fff;
    font-family: 'Russo One', sans-serif;
}

.price span {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.features-list li i {
    color: var(--cyan-neon);
    font-size: 1.1rem;
}

.anchoring {
    font-size: 0.95rem;
    color: var(--gold-app);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* FAQ Styles */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h4 {
    color: var(--gold-app);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-family: 'Russo One', sans-serif;
}

.faq-item p {
    color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta {
    padding: 150px 0;
    background: radial-gradient(circle at center, rgba(0, 255, 196, 0.05) 0%, transparent 70%);
}

/* Sticky Mobile CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(5, 26, 21, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: none;
    border-top: 1px solid rgba(0, 255, 196, 0.2);
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 18px;
    background: var(--gold-app);
    color: #000;
    font-weight: 900;
    border-radius: 8px;
    text-decoration: none;
    display: block;
}

@media (max-width: 992px) {

    .pricing-grid,
    .threat-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .logo {
        font-size: 2.22rem;
        padding: 20px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .urgent-headline {
        font-size: 2.8rem;
    }

    .sub-headline {
        margin: 0 auto 40px;
    }

    .sticky-cta {
        display: block;
    }

    .cta-wrapper {
        justify-content: center;
    }

    .footer {
        padding-bottom: 100px;
    }

    .release-badge {
        margin: 0 auto 20px;
    }
}

/* WireGuard Tech Section */
.wireguard-tech {
    background: rgba(0, 255, 196, 0.02);
    border-top: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    padding: 100px 0;
}

.wireguard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.wireguard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--grid-line);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    backdrop-filter: blur(10px);
}

.wireguard-card:hover {
    border-color: var(--cyan-neon);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 196, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.wireguard-card h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Russo One', sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
}

.wireguard-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.wireguard-footer {
    color: var(--cyan-neon);
    margin-top: 60px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .wireguard-grid {
        grid-template-columns: 1fr;
    }

    .wireguard-tech {
        padding: 60px 0;
    }
}

/* Turbo-Charged Desktop QR Code Styling - Gold Refined */
.desktop-qr-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    /* Texto em cima, QR embaixo */
    align-items: center;
    gap: 15px;
    background: rgba(212, 163, 20, 0.05);
    /* Fundo dourado super transparente */
    border: 2px solid var(--gold-app);
    padding: 25px 40px;
    border-radius: 16px;
    width: fit-content;
    box-shadow: 0 0 30px rgba(212, 163, 20, 0.15);
    animation: goldPulse 3s infinite alternate;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 20px rgba(212, 163, 20, 0.1);
        border-color: rgba(212, 163, 20, 0.5);
    }

    100% {
        box-shadow: 0 0 40px rgba(212, 163, 20, 0.4);
        border-color: var(--gold-app);
    }
}

.qr-text {
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 10px var(--gold-glow);
    max-width: 250px;
}

.qr-box {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    border: 4px solid #000;
    box-shadow: 0 0 20px rgba(212, 163, 20, 0.5);
    display: flex;
}

/* Aumentando o tamanho do QR Code */
.qr-box img {
    width: 160px;
    /* Dobro do tamanho original */
    height: 160px;
    display: block;
}


/* REGRA CRUCIAL: Esconder no Mobile */
@media (max-width: 768px) {
    .desktop-qr-container {
        display: none !important;
    }
}


/* Pricing Comparison Styles */
.comparison-grid {
    grid-template-columns: repeat(2, 450px) !important;
    justify-content: center;
    max-width: 1000px;
    margin: 60px auto 0;
    gap: 40px !important;
}

.tier-status {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.gold-glow-text {
    color: var(--gold-app);
    text-shadow: 0 0 10px var(--gold-glow);
}

.cta-area {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pricing-card.featured .cta-area {
    border-top: 1px solid rgba(212, 163, 20, 0.2);
}

.pricing-card .features-list li {
    justify-content: center;
}

@media (max-width: 1000px) {
    .comparison-grid {
        grid-template-columns: 1fr !important;
        max-width: 480px;
        gap: 25px !important;
    }

    .pricing-card {
        padding: 40px 30px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 26, 21, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--cyan-neon);
    padding: 25px 0;
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    max-width: 800px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--cyan-neon);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.cookie-content a:hover {
    border-bottom-color: var(--cyan-neon);
}

.cookie-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.btn-cookie-primary {
    background: var(--cyan-neon);
    color: #000;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.btn-cookie-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--grid-line);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.btn-cookie-primary:hover {
    box-shadow: 0 0 25px var(--cyan-neon);
    transform: translateY(-3px);
    background: #fff;
}

.btn-cookie-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cookie-banner {
        padding: 35px 20px;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie-primary,
    .btn-cookie-secondary {
        flex: 1;
        max-width: 200px;
    }

    .sticky-cta {
        bottom: 110px;
        /* Offset sticky CTA if banner is visible */
    }
}

/* Device-Specific Visibility Utilities */
@media (min-width: 769px) {
    .hide-on-desktop {
        display: none !important;
    }
}/* Promo Beta Section */
.promo-beta {
    padding: 100px 0;
    margin-top: 40px;
}

.promo-box {
    background: linear-gradient(145deg, rgba(212, 163, 20, 0.15) 0%, rgba(5, 26, 21, 0.95) 100%);
    border: 2px solid var(--gold-app);
    border-radius: 30px;
    padding: 70px 40px;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 163, 20, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 163, 20, 0.15) 0%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: var(--gold-app);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.promo-content h2 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 25px;
    text-shadow: 0 0 25px rgba(212, 163, 20, 0.4);
}

.promo-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 45px auto;
}

.promo-content p strong {
    color: #fff;
    font-weight: 800;
}

.promo-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    max-width: 750px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.promo-input,
.btn-promo {
    height: 65px;
    box-sizing: border-box;
    margin: 0;
    border-radius: 14px;
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    border: none;
}

.promo-input {
    flex: 1;
    min-width: 300px;
    padding: 0 30px;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Keeps sizing identical to button but allows border glow on focus */
}

.promo-input::placeholder {
    color: #888;
    font-weight: 500;
}

.promo-input:focus {
    outline: none;
    border-color: var(--gold-app);
    box-shadow: 0 0 20px rgba(212, 163, 20, 0.5);
    background: #fff;
}

.btn-promo {
    padding: 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}

.promo-disclaimer-wrapper {
    display: block;
    width: 100%;
    margin-top: 40px; /* Strong separation here instead of inside the p tag */
    padding-top: 20px;
}

.promo-disclaimer {
    display: block;
    width: 100%;
    font-size: 0.75rem; /* Reduced font size further */
    color: rgba(255, 255, 255, 0.45);
    margin: 0 auto;
    max-width: 650px;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--gold-app);
    text-align: left;
}

.promo-disclaimer strong {
    color: var(--gold-app);
}

@media (max-width: 768px) {
    .promo-box {
        padding: 50px 25px;
    }
    .promo-content h2 {
        font-size: 2.1rem;
    }
    .promo-form {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .promo-input, .btn-promo {
        width: 100%;
        height: 60px;
    }
}