/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0d0d0d;
    overflow-x: hidden;
    position: relative;
}

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

/* ===== VARIABLES ===== */
:root {
    --primary-neon: #00ffff;
    --secondary-neon: #0099ff;
    --accent-green: #39ff14;
    --bg-dark: #0d0d0d;
    --bg-darker: #000000;
    --bg-card: rgba(20, 20, 20, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-glow: rgba(0, 255, 255, 0.3);
    --shadow-neon: 0 0 30px rgba(0, 255, 255, 0.4);
    --shadow-green: 0 0 20px rgba(57, 255, 20, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    --gradient-accent: linear-gradient(135deg, var(--accent-green), var(--primary-neon));
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-neon);
    text-shadow: 0 0 20px var(--primary-neon);
    margin-bottom: 30px;
}

.loading-logo span {
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--accent-green);
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.highlight {
    color: var(--accent-green);
    text-shadow: 0 0 10px var(--accent-green);
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-hero, .btn-secondary, .btn-pacote, .btn-combo, .btn-final, .btn-popup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-neon);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary {
    background: var(--gradient-accent);
    color: #000;
    box-shadow: var(--shadow-green);
}

.btn-pacote.featured, .btn-combo, .btn-final {
    background: var(--gradient-accent);
    box-shadow: var(--shadow-green);
}

.glow-effect:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.glow-effect:hover .btn-glow {
    left: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-glow);
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-neon);
    text-shadow: 0 0 15px var(--primary-neon);
}

.logo span {
    color: var(--accent-green);
    text-shadow: 0 0 15px var(--accent-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-neon);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 40px 60px, var(--primary-neon), transparent),
        radial-gradient(2px 2px at 120px 30px, var(--accent-green), transparent),
        radial-gradient(1px 1px at 80px 100px, var(--secondary-neon), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--primary-neon);
    border-radius: 25px;
    font-size: 14px;
    color: var(--primary-neon);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-neon);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px var(--primary-neon);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-hero {
    font-size: 18px;
    padding: 20px 40px;
    align-self: flex-start;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-neon);
    font-size: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-neon);
    animation: floatIcon 3s ease-in-out infinite;
}

.floating-icon:nth-child(2n) {
    background: rgba(57, 255, 20, 0.2);
    border-color: var(--accent-green);
    color: var(--accent-green);
    animation-delay: 1s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    margin-top: 10px;
    font-size: 20px;
    color: var(--primary-neon);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    padding: 40px 0;
    background: rgba(57, 255, 20, 0.05);
    border-top: 1px solid var(--accent-green);
    border-bottom: 1px solid var(--accent-green);
}

.countdown-content {
    text-align: center;
}

.countdown-content h3 {
    color: var(--accent-green);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.countdown-item {
    text-align: center;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--accent-green);
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    font-family: 'Orbitron', monospace;
}

.countdown-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--primary-neon);
    border-radius: 25px;
    font-size: 14px;
    color: var(--primary-neon);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    background: var(--bg-darker);
}

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

.testimonial-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-neon);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-neon);
    background: var(--gradient-primary);
    object-fit: cover;
    transition: all 0.3s ease;
}

.testimonial-header img:hover {
    border-color: var(--accent-green);
    box-shadow: 0 0 15px var(--primary-neon);
}

.testimonial-info h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.roi-badge {
    margin-left: auto;
    background: var(--gradient-accent);
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.result-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.result-metrics span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-green);
    font-size: 14px;
    font-weight: 600;
}

/* ===== JOHN IA SECTION ===== */
.john-ia {
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
}

.john-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.john-visual {
    position: relative;
}

.john-avatar {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.john-image {
    width: 100%;
    border-radius: 20px;
    border: 3px solid var(--primary-neon);
    box-shadow: var(--shadow-neon);
}

.john-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-preview {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-neon);
}

.chat-message p {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 14px;
}

.typing-indicator {
    color: var(--primary-neon);
    font-size: 12px;
    animation: typing 1.5s infinite;
}

@keyframes typing {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.john-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.john-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--primary-neon);
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.john-highlight i {
    color: var(--primary-neon);
    font-size: 20px;
}

.john-highlight span {
    color: var(--primary-neon);
    font-weight: 600;
    font-size: 14px;
}

.john-price-highlight {
    background: var(--gradient-accent);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    color: #000;
    border: 2px solid var(--accent-green);
    box-shadow: var(--shadow-green);
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.price-label {
    font-weight: 600;
    font-size: 16px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
}

.price-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

.price-benefit i {
    font-size: 16px;
}

.john-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--primary-neon);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== SISTEMA SECTION ===== */
.sistema {
    background: var(--bg-darker);
}

.sistema-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid transparent;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.step-item:hover, .step-item.active {
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--gradient-primary);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #000;
    font-size: 35px;
}

.step-item h3 {
    color: var(--primary-neon);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    background: var(--primary-neon);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transform: translateY(-50%);
}

.step-item:last-child .step-arrow {
    display: none;
}

.sistema-demo {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--primary-neon);
    padding: 40px;
    text-align: center;
}

.demo-screen {
    background: #000;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid var(--primary-neon);
}

.demo-icon {
    font-size: 4rem;
    color: var(--primary-neon);
    margin: 20px 0;
    animation: pulse 2s infinite;
}

/* ===== BEFORE AFTER ===== */
.before-after {
    background: radial-gradient(circle at 30% 70%, rgba(57, 255, 20, 0.05) 0%, transparent 60%);
}

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

.comparison-side {
    text-align: center;
}

.comparison-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.before .comparison-header h3 {
    color: #ff4444;
}

.after .comparison-header h3 {
    color: var(--accent-green);
}

.comparison-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.comparison-image img {
    width: 100%;
    filter: grayscale(20%);
}

.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.problem-list, .success-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-item, .success-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.problem-item i {
    color: #ff4444;
    font-size: 18px;
}

.success-item i {
    color: var(--accent-green);
    font-size: 18px;
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--primary-neon);
}

.arrow-container {
    text-align: center;
}

.arrow-container span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== PACOTES ===== */
.pacotes {
    background: var(--bg-darker);
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pacote-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pacote-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-neon);
}

.pacote-card.featured {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-green);
    transform: scale(1.05);
}

.pacote-badge {
    background: var(--gradient-accent);
    color: #000;
    padding: 10px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.pacote-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.pacote-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #000;
    font-size: 35px;
}

.pacote-card.featured .pacote-icon {
    background: var(--gradient-accent);
}

.pacote-header h3 {
    color: var(--primary-neon);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.pacote-card.featured .pacote-header h3 {
    color: var(--accent-green);
}

.pacote-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-neon);
    font-family: 'Orbitron', monospace;
}

.pacote-card.featured .amount {
    color: var(--accent-green);
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.pacote-features {
    padding: 30px;
}

.pacote-features ul {
    list-style: none;
}

.pacote-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pacote-features li:last-child {
    border-bottom: none;
}

.pacote-features i {
    color: var(--primary-neon);
    font-size: 16px;
}

.pacote-card.featured .pacote-features i {
    color: var(--accent-green);
}

.pacote-cta {
    padding: 0 30px 30px;
}

.btn-pacote {
    display: block;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.pacote-combo {
    background: var(--gradient-accent);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #000;
    box-shadow: var(--shadow-green);
}

.combo-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000;
}

.combo-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
}

.combo-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
}

.discount {
    background: #000;
    color: var(--accent-green);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
}

.btn-combo {
    background: #000;
    color: var(--accent-green);
    font-size: 18px;
    padding: 20px 40px;
}

/* ===== GARANTIA ===== */
.garantia {
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 60%);
}

.garantia-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid var(--primary-neon);
}

.garantia-icon {
    font-size: 5rem;
    color: var(--primary-neon);
}

.garantia-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-neon);
}

.garantia-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.garantia-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-darker);
}

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

.faq-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-neon);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.05);
}

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-neon);
    transition: transform 0.3s ease;
    font-size: 18px;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
    background: radial-gradient(circle at 70% 30%, rgba(57, 255, 20, 0.05) 0%, transparent 60%);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-neon);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--primary-neon);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-neon);
}

.mapa-custom {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.mapa-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mapa-custom:hover .mapa-image {
    transform: scale(1.05);
}

.mapa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mapa-custom:hover .mapa-overlay {
    opacity: 1;
}

.btn-localizacao {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gradient-primary);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
}

.btn-localizacao:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

.mapa-container iframe {
    filter: hue-rotate(200deg) saturate(0.3) invert(0.9);
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: var(--gradient-primary);
    color: #000;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 800;
    color: #000;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.8);
}

.btn-final {
    background: #000;
    color: var(--primary-neon);
    font-size: 20px;
    padding: 25px 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.cta-garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--primary-neon);
    margin-bottom: 15px;
    text-shadow: 0 0 15px var(--primary-neon);
}

.footer-logo span {
    color: var(--accent-green);
    text-shadow: 0 0 15px var(--accent-green);
}

.footer-logo p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-neon);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-neon);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: var(--text-muted);
}

/* ===== FLOATING ELEMENTS ===== */
.chat-float {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-float:hover {
    transform: scale(1.05);
}

.chat-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-neon);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-neon);
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 2px solid #000;
    animation: pulse 2s infinite;
}

.chat-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary-neon);
    border-radius: 15px;
    padding: 15px;
    min-width: 200px;
    box-shadow: var(--shadow-neon);
    animation: tooltipBounce 3s ease-in-out infinite;
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 8px solid transparent;
    border-top-color: var(--primary-neon);
}

@keyframes tooltipBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-fixed a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-fixed a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-fixed i {
    font-size: 24px;
}

/* ===== EXIT INTENT POPUP ===== */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-intent-popup.show {
    opacity: 1;
    pointer-events: all;
}

.popup-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-neon);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-neon);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--text-primary);
}

.popup-header h3 {
    color: var(--accent-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

.popup-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.popup-offer {
    margin-bottom: 30px;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

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

.offer-price .new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    font-family: 'Orbitron', monospace;
}

.popup-offer p {
    color: var(--text-secondary);
    font-size: 16px;
}

#exit-timer {
    color: var(--accent-green);
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.btn-popup {
    font-size: 18px;
    padding: 20px 40px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .john-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sistema-steps {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 15px;
    }

    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .garantia-content {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
    }

    .garantia-features {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-fixed a span {
        display: none;
    }

    .whatsapp-fixed a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .chat-float {
        bottom: 90px;
    }

    .popup-content {
        padding: 30px 20px;
    }

    .combo-price {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn-hero, .btn-final {
        font-size: 16px;
        padding: 15px 25px;
    }

    .testimonials-grid,
    .pacotes-grid {
        grid-template-columns: 1fr;
    }

    .john-avatar {
        max-width: 280px;
    }

    .chat-tooltip {
        min-width: 150px;
        right: -70px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

.show {
    opacity: 1 !important;
    pointer-events: all !important;
}

.text-center {
    text-align: center;
}

.no-scroll {
    overflow: hidden;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-neon);
}