:root {
    --primary: #0090FF;
    --primary-dark: #0052CC;
    --primary-light: #00C2FF;
    --secondary: #00D4AA;
    --accent: #FF6B35;
    --dark: #020617;
    --dark-light: #0A1128;
    --gray-100: #F8FAFC;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #0090FF 0%, #00D4AA 100%);
    --gradient-dark: linear-gradient(180deg, #020617 0%, #0A1128 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0, 144, 255, 0.15) 0%, transparent 70%);
    --cyan: #16E3F8;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #020617;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

@media (min-width: 769px) {
    body {
        cursor: none;
    }
}

/* Custom Cursor - Versão Leve */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    box-shadow: 0 0 10px rgba(22, 227, 248, 0.5);
}

.custom-cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s;
    box-shadow: 0 0 8px var(--cyan);
}

.custom-cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.8;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s, transform 0.1s;
}

.cursor-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s;
}

.custom-cursor.hover {
    width: 35px;
    height: 35px;
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(22, 227, 248, 0.7);
}

.custom-cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
    width: 6px;
    height: 6px;
    box-shadow: 0 0 12px var(--cyan);
}

@media (min-width: 769px) {
    a, button, .btn, .plan-card, .feature-card, .step-card {
        cursor: none;
    }
}

/* ========== TOUCH EFFECTS (MOBILE) ========== */
.touch-effects-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.touch-ripple {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    pointer-events: none;
    background: radial-gradient(circle, rgba(22, 227, 248, 0.2) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(22, 227, 248, 0.6), 0 0 40px rgba(22, 227, 248, 0.4);
}

.touch-ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.7;
    animation: ripple-expand 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.touch-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 1px solid rgba(22, 227, 248, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.5;
    animation: ripple-expand-delayed 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.touch-ripple.interactive {
    border-color: var(--cyan);
    border-width: 4px;
    width: 90px;
    height: 90px;
    box-shadow: 0 0 30px rgba(22, 227, 248, 0.8), 0 0 60px rgba(22, 227, 248, 0.6), 0 0 90px rgba(22, 227, 248, 0.4);
    background: radial-gradient(circle, rgba(22, 227, 248, 0.3) 0%, transparent 70%);
}

.touch-ripple.interactive::before {
    border-color: var(--cyan);
    border-width: 3px;
    animation: ripple-expand-interactive 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.touch-ripple.interactive::after {
    border-color: rgba(22, 227, 248, 0.6);
    animation: ripple-expand-interactive-delayed 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ripple-expand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes ripple-expand-interactive {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

@keyframes ripple-expand-delayed {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes ripple-expand-interactive-delayed {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.touch-particle {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    pointer-events: none;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(22, 227, 248, 0.6);
    animation: particle-fade 0.8s ease forwards;
}

@keyframes particle-fade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(0, 144, 255, 0.2) 0%, rgba(0, 212, 170, 0.2) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo:hover::before {
    opacity: 1;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(1.1) saturate(1.2) contrast(1.05);
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover .logo-image {
    filter: brightness(1.2) saturate(1.3) contrast(1.1) drop-shadow(0 0 20px rgba(0, 144, 255, 0.5)) drop-shadow(0 0 10px rgba(0, 212, 170, 0.3));
    transform: scale(1.03);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--white);
}

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

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

.nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-400);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 102, 255, 0.1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    transition: transform 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle.active {
    transform: rotate(90deg);
}

.mobile-toggle i {
    transition: transform 0.3s;
}

.mobile-toggle.active i::before {
    content: '\f00d';
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0 40px;
    overflow: hidden;
    background: #020617;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 1;
}

/* Globe Canvas */
.globe-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
    mix-blend-mode: screen;
}

@media (max-width: 768px) {
    .globe-canvas {
        opacity: 0.12 !important;
        mix-blend-mode: normal;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 70%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200') center/cover;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    opacity: 0.2;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 0;
}

.hero-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 6px;
    margin-top: 6px;
    letter-spacing: -2px;
}

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

.hero-description {
    font-size: 20px;
    color: var(--gray-400);
    margin-bottom: 6px;
    margin-top: 6px;
    max-width: 500px;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top: 10px;
}

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

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 5px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speed-card {
    background: rgba(20, 27, 45, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.speed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.speed-ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.speed-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.speed-value {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.speed-unit {
    font-size: 24px;
    color: var(--gray-400);
    font-weight: 600;
}

.speed-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 10px;
}

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

.speed-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.speed-feature i {
    color: var(--secondary);
}

/* ========== PLANS ========== */
.plans {
    padding: 60px 0;
    position: relative;
    background: #020617;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plan-card {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.15) 0%, var(--dark-light) 100%);
    border-color: rgba(0, 102, 255, 0.3);
}

.plan-card.featured::before {
    opacity: 1;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-speed {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-unit {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 25px;
}

.plan-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-price-value {
    font-size: 14px;
    color: var(--gray-400);
}

.plan-price-value span {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-400);
    font-size: 14px;
}

.plan-features li i {
    color: var(--secondary);
    font-size: 16px;
}

.plan-cta {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
}

.plan-card:not(.featured) .plan-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.plan-card:not(.featured) .plan-cta:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.plan-card.featured .plan-cta {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

/* ========== FEATURES ========== */
.features {
    padding: 60px 0;
    background: #0A1128;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

.feature-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 80px 0;
    background: var(--dark-light);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-content {
    max-width: 1238px;
    margin: 0 auto;
}

.about-text {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 16px;
}

.about-description p {
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-signature {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    color: var(--secondary);
    text-align: center;
}

.about-signature strong {
    color: var(--cyan);
}

.cta-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: #020617;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: 40px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 18px 40px;
    font-size: 16px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 16px 38px;
    font-size: 16px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ========== FOOTER ========== */
.footer {
    background: #020617;
    padding: 50px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    color: var(--gray-400);
    margin: 20px 0 30px;
    font-size: 15px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    display: none !important;
}

/* ========== REFERRAL PAGE ========== */
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    width: 100%;
}

.referral-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0 50px;
    overflow: hidden;
}

.referral-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.6;
}

.referral-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.referral-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.referral-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 600;
}

.referral-badge i {
    animation: pulse 2s infinite;
}

.referral-title {
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

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

.referral-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--gray-400);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.referral-subtitle strong {
    color: var(--secondary);
    font-weight: 700;
}

.referral-image-container {
    margin-top: 50px;
    position: relative;
}

.referral-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: float-image 6s ease-in-out infinite;
}

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

.referral-cta-banner {
    margin-top: 50px;
    text-align: center;
}

.referral-cta-banner-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.referral-cta-banner-btn {
    font-size: 18px;
    padding: 18px 50px;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
}

.referral-cta-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.5);
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background: var(--dark-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.step-description {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

/* Benefits */
.referral-benefits {
    padding: 60px 0;
}

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

.benefit-card-large {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
}

.benefit-card-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.benefit-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: var(--white);
    margin: 0 auto 20px;
}

.benefit-value {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 10px;
}

.benefit-label {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.benefits-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}

.benefit-item-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.benefit-item-content p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.6;
}

/* Rules */
.referral-rules {
    padding: 60px 0;
    background: var(--dark-light);
}

.rules-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.rules-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rules-header i {
    font-size: 32px;
    color: var(--primary);
}

.rules-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s;
}

.rule-item:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateX(10px);
}

.rule-item i {
    color: var(--secondary);
    font-size: 20px;
    flex-shrink: 0;
}

.rule-item span {
    color: var(--gray-400);
    font-size: 16px;
    line-height: 1.6;
}

/* Referral CTA */
.referral-cta {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.referral-cta-box {
    background: var(--gradient-primary);
    border-radius: 40px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.referral-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.referral-cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.referral-cta-content {
    position: relative;
    z-index: 2;
}

.referral-cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.referral-cta-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-container {
        padding: 0 30px;
    }

    .container {
        padding: 0 30px;
    }

    .hero-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        display: contents;
    }

    .hero-badge {
        order: 1;
    }

    .hero-title {
        order: 2;
    }

    .hero-description {
        order: 3;
        margin: 0 auto 25px;
        max-width: 100%;
    }

    .hero-cta {
        order: 4;
        justify-content: center;
        margin-bottom: 0;
    }

    .hero-visual {
        order: 5;
    }

    .hero-stats {
        order: 6;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speed-features {
        flex-wrap: wrap;
        gap: 20px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-container {
        padding: 0 18px;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        backdrop-filter: blur(5px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 15, 28, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 16px;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        position: fixed;
        top: auto;
        bottom: 30px;
        right: -100%;
        flex-direction: column;
        width: 280px;
        padding: 0 30px;
        gap: 15px;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav-cta.active {
        right: 0;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    .mobile-toggle {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding: 50px 0 35px;
        min-height: auto;
    }

    .hero-content {
        display: contents;
    }

    .hero-badge {
        order: 1;
    }

    .hero-title {
        order: 2;
        font-size: clamp(32px, 7vw, 48px);
        margin-bottom: 18px;
    }

    .hero-description {
        order: 3;
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-cta {
        order: 4;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    .hero-visual {
        order: 5;
        margin-top: 0;
    }

    .hero-stats {
        order: 6;
        flex-direction: column;
        gap: 22px;
        margin-top: 25px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-badge {
        order: 1;
    }

    .hero-title {
        order: 2;
    }

    .hero-description {
        order: 3;
    }

    .hero-cta {
        order: 4;
        margin-bottom: 0;
    }

    .hero-stats {
        order: 6;
        margin-top: 0;
    }

    .hero-visual {
        order: 5;
    }

    .speed-card {
        padding: 35px 22px;
        max-width: 100%;
    }

    .speed-ring {
        width: 170px;
        height: 170px;
        margin-bottom: 25px;
    }

    .speed-value {
        font-size: 48px;
    }

    .speed-unit {
        font-size: 18px;
    }

    .speed-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .plans {
        padding: 45px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(26px, 5vw, 36px);
    }

    .section-subtitle {
        font-size: 15px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-text {
        padding: 40px 30px;
    }

    .about-subtitle {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-description p {
        margin-bottom: 18px;
    }

    .about-signature {
        margin-top: 25px;
        padding-top: 25px;
        font-size: 16px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 18px;
    }

    .plan-card {
        padding: 30px 22px;
    }

    .plan-speed {
        font-size: 42px;
    }

    .plan-price-value span {
        font-size: 32px;
    }

    .features {
        padding: 45px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .feature-card {
        padding: 28px 22px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 14px;
    }

    .cta-section {
        padding: 45px 0;
    }

    .cta-box {
        padding: 50px 25px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 60px 0 25px;
    }

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

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

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

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .whatsapp-float {
        display: none !important;
    }
    
    /* Estilos antigos removidos */
    /*    .whatsapp-float {
        display: none !important;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 42px);
    }

    .section-subtitle {
        font-size: 16px;
    }

    .referral-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .referral-title {
        font-size: clamp(32px, 7vw, 48px);
        margin-bottom: 20px;
    }

    .referral-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .referral-image-container {
        margin-top: 40px;
    }

    .referral-cta-banner {
        margin-top: 40px;
    }

    .referral-cta-banner-title {
        font-size: clamp(24px, 5vw, 32px);
        margin-bottom: 25px;
    }

    .referral-cta-banner-btn {
        font-size: 16px;
        padding: 16px 40px;
        width: 100%;
        max-width: 300px;
    }

    .how-it-works {
        padding: 50px 0;
    }

    .steps-grid {
        gap: 25px;
        margin-top: 40px;
    }

    .step-card {
        padding: 40px 25px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .step-title {
        font-size: 20px;
    }

    .referral-benefits {
        padding: 50px 0;
    }

    .benefit-card-large {
        padding: 40px 30px;
    }

    .benefit-icon-large {
        width: 100px;
        height: 100px;
        font-size: 48px;
    }

    .benefit-value {
        font-size: 64px;
    }

    .benefit-label {
        font-size: 20px;
    }

    .benefits-title {
        font-size: clamp(28px, 5vw, 36px);
        margin-bottom: 30px;
    }

    .benefit-item {
        margin-bottom: 25px;
    }

    .referral-rules {
        padding: 50px 0;
    }

    .rules-card {
        padding: 40px 30px;
    }

    .rules-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .rule-item {
        padding: 15px;
    }

    .referral-cta {
        padding: 50px 0;
    }

    .referral-cta-box {
        padding: 50px 30px;
    }

    .referral-cta-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .referral-cta-description {
        font-size: 16px;
    }

    .referral-cta-buttons {
        flex-direction: column;
    }

    .referral-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .nav-container, .container, .hero-container {
        padding: 0 12px;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-image {
        height: 55px;
        max-width: 220px;
        filter: brightness(1.1) saturate(1.2) contrast(1.05);
    }
    
    .logo:hover .logo-image {
        filter: brightness(1.15) saturate(1.25) contrast(1.1) drop-shadow(0 0 15px rgba(0, 144, 255, 0.4)) drop-shadow(0 0 8px rgba(0, 212, 170, 0.3));
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero {
        padding: 40px 0 25px;
    }

    .hero-content {
        display: contents;
    }

    .hero-badge {
        order: 1;
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 15px;
    }

    .hero-title {
        order: 2;
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-description {
        order: 3;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-cta {
        order: 4;
        margin-bottom: 0;
        gap: 12px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 14px;
    }

    .hero-visual {
        order: 5;
        margin-top: 0;
    }

    .hero-stats {
        order: 6;
        gap: 20px;
        margin-top: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .speed-card {
        padding: 25px 18px;
    }

    .speed-ring {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .speed-value {
        font-size: 40px;
    }

    .speed-unit {
        font-size: 16px;
    }

    .speed-label {
        font-size: 11px;
    }

    .speed-feature {
        font-size: 11px;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-text {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .about-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-description p {
        margin-bottom: 15px;
    }

    .about-signature {
        margin-top: 20px;
        padding-top: 20px;
        font-size: 15px;
    }

    .plans {
        padding: 35px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-label {
        font-size: 10px;
        padding: 5px 14px;
    }

    .plan-card {
        padding: 25px 18px;
    }

    .plan-speed {
        font-size: 36px;
    }

    .plan-unit {
        font-size: 14px;
    }

    .plan-price {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .plan-price-value {
        font-size: 12px;
    }

    .plan-price-value span {
        font-size: 28px;
    }

    .plan-features li {
        font-size: 12px;
        padding: 8px 0;
    }

    .plan-cta {
        padding: 12px;
        font-size: 13px;
    }

    .features {
        padding: 40px 0;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 14px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: clamp(22px, 7vw, 32px);
    }

    .cta-description {
        font-size: 15px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .whatsapp-float {
        display: none !important;
    }
    
    /* Estilos antigos removidos */
    /*    .whatsapp-float {
        display: none !important;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 38px);
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .hero-bg {
        right: -20%;
        width: 100%;
        opacity: 0.2;
    }

    .globe-canvas {
        opacity: 0.15;
    }

    .referral-hero {
        padding: 50px 0 30px;
    }

    .referral-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .referral-subtitle {
        font-size: 15px;
    }

    .referral-cta-banner {
        margin-top: 35px;
    }

    .referral-cta-banner-title {
        font-size: clamp(22px, 6vw, 28px);
        margin-bottom: 20px;
    }

    .referral-cta-banner-btn {
        font-size: 15px;
        padding: 14px 35px;
    }

    .step-card {
        padding: 35px 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 25px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .benefit-card-large {
        padding: 35px 25px;
    }

    .benefit-icon-large {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .benefit-value {
        font-size: 56px;
    }

    .benefit-label {
        font-size: 18px;
    }

    .benefit-description {
        font-size: 14px;
    }

    .benefit-item-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .benefit-item-content h4 {
        font-size: 18px;
    }

    .benefit-item-content p {
        font-size: 14px;
    }

    .rules-card {
        padding: 30px 20px;
    }

    .rules-header h2 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .rule-item {
        padding: 12px;
        gap: 15px;
    }

    .rule-item span {
        font-size: 14px;
    }

    .referral-cta-box {
        padding: 40px 20px;
    }

    .referral-cta-title {
        font-size: clamp(22px, 6vw, 32px);
    }

    .referral-cta-description {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .nav-container, .container, .hero-container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .speed-ring {
        width: 160px;
        height: 160px;
    }

    .speed-value {
        font-size: 40px;
    }

    .plan-card {
        padding: 25px 18px;
    }

    .cta-box {
        padding: 35px 18px;
    }
}






