/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C63FF;
    --secondary: #FF6B6B;
    --accent: #4ECDC4;
    --dark: #0A0E27;
    --darker: #050814;
    --light: #F7F7FF;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-hover: 0 30px 80px rgba(0,0,0,0.4);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Barra de Progresso Gamificada */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.1);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.progress-bar {
    height: 100%;
    background: var(--gradient-3);
    width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
}

.progress-label {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-text 2s infinite;
}

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

/* Sistema de Conquistas */
.achievements {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(20px);
    padding: 10px 15px;
    border-radius: 50px;
    border: 2px solid rgba(108, 99, 255, 0.3);
    transform: translateX(200px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.achievement.unlocked {
    transform: translateX(0);
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.6);
    animation: achievement-unlock 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes achievement-unlock {
    0% { transform: translateX(200px) rotate(0deg) scale(0.5); }
    50% { transform: translateX(-20px) rotate(5deg) scale(1.1); }
    100% { transform: translateX(0) rotate(0deg) scale(1); }
}

.achievement-icon {
    font-size: 24px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.achievement.unlocked .achievement-icon {
    filter: grayscale(0%);
    animation: icon-bounce 0.5s;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.achievement-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.achievement.unlocked .achievement-name {
    color: var(--light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--light);
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-dot {
    color: var(--primary);
    font-size: 40px;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); color: var(--primary); }
    50% { transform: scale(1.2); color: var(--accent); }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--accent);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background: var(--accent);
}

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

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-3);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--accent);
}

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

.cta-nav {
    background: var(--gradient-1);
    padding: 12px 24px !important;
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 99, 255, 0.6);
}

.cta-nav::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

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

.float-element {
    position: absolute;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.float-element img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(0.8);
}

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

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.gradient-text {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--light);
    text-stroke: 2px var(--light);
}

.highlight-text {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(78, 205, 196, 0.6);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-cta {
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 40px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(108, 99, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.btn-mega {
    padding: 25px 50px;
    font-size: 20px;
    flex-direction: column;
    gap: 5px;
}

.btn-subtext {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.pulse {
    animation: pulse-btn 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.cta-info {
    margin-top: 15px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.proof-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.proof-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.scroll-indicator span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: mouse-scroll 2s infinite;
}

@keyframes mouse-scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

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

/* Parallax Sections */
.parallax-section {
    position: relative;
    padding: 120px 20px;
}

/* GIF Reveals */
.gif-reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    scale: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 1;
}

.gif-reveal.active {
    opacity: 0.15;
    scale: 1;
}

.gif-reveal img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: brightness(1.5) saturate(1.5);
}

/* Section Title */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
}

/* Reveal Elements */
.reveal-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.hover-lift {
    transform-style: preserve-3d;
}

.hover-lift:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    animation: icon-float 3s ease-in-out infinite;
}

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

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light);
}

.benefit-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-gif {
    margin-top: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-card:hover .card-gif {
    opacity: 1;
    transform: scale(1);
}

.card-gif img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* How It Works */
.how-it-works {
    background: var(--dark);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 10px 40px rgba(108, 99, 255, 0.5);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s;
}

.timeline-content:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    transform: scale(1.03);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent);
}

.timeline-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-gif {
    width: 100%;
    max-width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
}

/* Results */
.results {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.result-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s;
}

.result-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--accent);
}

.result-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.result-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.result-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.result-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat {
    background: var(--gradient-4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

/* Pricing */
.pricing {
    background: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.4s;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-card.featured {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.4);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--light);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    color: var(--accent);
    margin-top: 10px;
}

.amount {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    margin-top: 35px;
}

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

.pricing-features li {
    padding: 12px 0;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.pricing-card .btn {
    width: 100%;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    text-align: center;
}

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

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.7);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px;
}

.cta-urgency {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid var(--secondary);
    border-radius: 20px;
    padding: 15px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.urgency-icon {
    font-size: 24px;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-label {
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-brand p,
.footer-contact p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-contact h4 {
    margin-bottom: 15px;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px;
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 24px;
    }

    .achievements {
        top: 60px;
        right: 10px;
    }

    .achievement {
        padding: 8px 12px;
    }

    .achievement-icon {
        font-size: 20px;
    }

    .achievement-name {
        font-size: 10px;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 100px;
    }

    .timeline-number {
        position: absolute;
        left: 0;
    }

    .social-proof {
        gap: 30px;
    }

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

    .whatsapp-label {
        display: none;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .btn-mega {
        padding: 20px 30px;
        font-size: 16px;
    }
}
