/* =========================
   DISCORD-INSPIRED VIBRANT DESIGN
   Colores llamativos + Animaciones optimizadas
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=Ginto+Nord:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Colores Discord Vibrantes */
    --discord-dark: #36393F;
    --discord-darker: #2F3136;
    --discord-darkest: #202225;
    --discord-black: #18191C;
    --discord-blurple: #5865F2;
    --discord-blurple-hover: #4752C4;
    --discord-green: #3BA55D;
    --discord-yellow: #FEE75C;
    --discord-fuchsia: #EB459E;
    --discord-red: #ED4245;
    --discord-text: #DCDDDE;
    --discord-text-muted: #B9BBBE;
    --discord-text-dark: #8E9297;
    --discord-hover: #393C43;
    
    /* Colores Vibrantes Adicionales */
    --vibrant-purple: #7289DA;
    --vibrant-pink: #FF73FA;
    --vibrant-cyan: #00D9FF;
    --vibrant-orange: #FF6B35;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--discord-dark);
    color: var(--discord-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.container-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* NAVBAR CON EFECTOS */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(32, 34, 37, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(88, 101, 242, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--discord-blurple) 0%, var(--vibrant-purple) 50%, var(--vibrant-cyan) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.6);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    position: relative;
    animation: floatPlane 3s ease-in-out infinite;
}

.logo-icon-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--discord-blurple), var(--vibrant-purple), var(--vibrant-cyan));
    border-radius: 14px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
    z-index: 0;
}

.logo-icon:hover .logo-icon-glow {
    opacity: 0.8;
    animation: pulseGlow 2s ease-in-out infinite;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.logo-brand {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, var(--vibrant-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.logo-domain {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--vibrant-purple) 0%, var(--vibrant-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

@keyframes floatPlane {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-4px) rotate(2deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--discord-text);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 10px 14px;
    border-radius: 8px;
    display: block;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--discord-blurple), var(--vibrant-pink));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-menu a:hover::before {
    width: 70%;
}

.nav-menu a:hover {
    color: white;
    background: rgba(88, 101, 242, 0.1);
    transform: translateY(-2px);
}

.btn-nav {
    background: linear-gradient(135deg, var(--discord-blurple) 0%, var(--vibrant-purple) 100%) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 30px !important;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav::before {
    display: none !important;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--vibrant-purple) 0%, var(--vibrant-pink) 100%) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
}

/* MENÚ HAMBURGUESA MÓVIL */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #5865F2, #00D9FF);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* LANDING PAGE */
.landing-page {
    margin-top: 70px;
    background: var(--discord-dark);
    position: relative;
}

/* HERO SECTION - SUPER VIBRANTE */
.hero {
    background: linear-gradient(180deg, var(--discord-darkest) 0%, var(--discord-dark) 100%);
    padding: 160px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(88, 101, 242, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 115, 250, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
    animation: breatheGradient 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes breatheGradient {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}


.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.05;
    letter-spacing: -3px;
    color: white;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    text-align: center;
}

.hero-subtitle {
    margin-bottom: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    text-align: center;
    position: relative;
    padding: 40px 56px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Forma orgánica blob detrás del texto estilo Discord */
.hero-subtitle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 140%;
    background: linear-gradient(135deg, 
        rgba(88, 101, 242, 0.12) 0%, 
        rgba(235, 69, 158, 0.08) 50%,
        rgba(114, 137, 218, 0.1) 100%
    );
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    filter: blur(20px);
    z-index: -1;
    animation: blobMorph 8s ease-in-out infinite;
}

.subtitle-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--discord-text);
    line-height: 1.7;
    margin: 0;
}

.subtitle-investment {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px solid rgba(88, 101, 242, 0.2);
}

.investment-highlight {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--vibrant-cyan);
    line-height: 1.4;
    display: block;
}

.investment-highlight strong {
    color: var(--vibrant-pink);
    font-weight: 800;
}

.investment-details {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    display: block;
}

.investment-details strong {
    color: var(--yellow);
    font-weight: 700;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        border-radius: 40% 60% 50% 70% / 60% 40% 50% 60%;
    }
    50% {
        border-radius: 70% 30% 60% 40% / 50% 60% 40% 50%;
    }
    75% {
        border-radius: 50% 70% 40% 60% / 70% 50% 60% 40%;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 950px;
    margin: 0 auto 64px;
}

.stat {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(114, 137, 218, 0.05) 100%);
    border-radius: 20px;
    padding: 48px 28px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(88, 101, 242, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--stat-index) * 0.15s + 0.6s);
}

.stat:nth-child(1) { 
    --stat-index: 0;
    border-color: rgba(88, 101, 242, 0.3);
}
.stat:nth-child(2) { 
    --stat-index: 1;
    border-color: rgba(0, 217, 255, 0.3);
}
.stat:nth-child(3) { 
    --stat-index: 2;
    border-color: rgba(255, 115, 250, 0.3);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stat:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--discord-blurple);
    box-shadow: 0 30px 60px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--discord-blurple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.5));
    color: white; /* Fallback */
}

.stat:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #ffffff 0%, var(--vibrant-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #ffffff 0%, var(--vibrant-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 1.05rem;
    color: var(--discord-text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* BOTONES ESTILO DISCORD 2025 */
.btn, .btn-large {
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 16px;
    transition: all 0.17s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    letter-spacing: 0px;
    position: relative;
    overflow: hidden;
    text-transform: none;
    min-height: 56px;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--discord-blurple);
    color: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.btn-primary:hover {
    background: var(--discord-blurple-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--discord-darker);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--discord-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* BANNER DE PROMOCIÓN - FÁCIL DE ACTUALIZAR */
.promo-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--discord-blurple) 0%, var(--vibrant-purple) 100%);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promo-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.promo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    font-weight: 400;
}

.promo-subtitle strong {
    color: white;
    font-weight: 800;
}

.promo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.promo-amount-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.promo-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--discord-blurple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.promo-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--discord-darkest);
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.promo-currency {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--discord-text-dark);
    letter-spacing: 0.5px;
}

.promo-receive .promo-label {
    color: var(--discord-green);
}

.promo-receive .promo-number {
    background: linear-gradient(135deg, var(--discord-green) 0%, #57F287 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-arrow {
    font-size: 3rem;
    color: white;
    font-weight: 900;
    animation: bounceArrow 2s ease-in-out infinite;
}

.promo-cta {
    background: white !important;
    color: var(--discord-blurple) !important;
    font-size: 18px;
    padding: 20px 48px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.promo-cta:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* AIRLINES SECTION */
.airlines-section {
    padding: 100px 20px;
    background: var(--discord-darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.airlines-note {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--discord-text-muted);
    margin-top: 32px;
    font-weight: 500;
}


.airlines-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--discord-blurple);
    margin-bottom: 56px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-box {
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.05) 0%, rgba(114, 137, 218, 0.02) 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(88, 101, 242, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.logo-box:hover {
    transform: translateY(-12px) scale(1.08);
    border-color: var(--discord-blurple);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(114, 137, 218, 0.08) 100%);
    box-shadow: 0 20px 45px rgba(88, 101, 242, 0.3);
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.85) saturate(0.7);
    transition: all 0.4s ease;
}

.logo-box:hover img {
    filter: brightness(1.1) saturate(1.2);
}


/* BENEFITS SECTION */
.benefits-section {
    padding: 120px 20px;
    background: var(--discord-darkest);
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--vibrant-cyan) 50%, var(--vibrant-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    color: white; /* Fallback */
}

.section-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--discord-text-muted);
    margin-bottom: 80px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(114, 137, 218, 0.03) 100%);
    border-radius: 20px;
    padding: 56px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(88, 101, 242, 0.15);
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-16px);
    border-color: var(--discord-blurple);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(114, 137, 218, 0.08) 100%);
    box-shadow: 0 30px 60px rgba(88, 101, 242, 0.4);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.25) 0%, rgba(88, 101, 242, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--discord-blurple) 0%, var(--vibrant-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.4));
    color: var(--discord-blurple); /* Fallback */
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(8deg);
}

.benefit-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.5px;
}

.benefit-item p {
    font-family: 'Inter', sans-serif;
    color: var(--discord-text-muted);
    line-height: 1.75;
    margin: 0;
    font-size: 1rem;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--discord-dark) 0%, var(--discord-darker) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.step {
    text-align: center;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(114, 137, 218, 0.05) 100%);
    border-radius: 20px;
    padding: 56px 40px;
    border: 2px solid rgba(88, 101, 242, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.step:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--discord-blurple);
    box-shadow: 0 25px 50px rgba(88, 101, 242, 0.4);
}

.step-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--discord-blurple) 0%, var(--vibrant-purple) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.5);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(88, 101, 242, 0.6);
}

.step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.5px;
}

.step p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--discord-text-muted);
    line-height: 1.7;
    margin: 0;
}

.step-arrow {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--discord-blurple) 0%, var(--vibrant-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: pulse 2s ease-in-out infinite;
    color: var(--discord-blurple); /* Fallback */
}

/* FINAL CTA */
.final-cta {
    padding: 140px 20px;
    background: var(--discord-darkest);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(88, 101, 242, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(255, 115, 250, 0.12) 0%, transparent 60%);
    animation: breathe 8s ease-in-out infinite;
}

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

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--vibrant-cyan) 50%, var(--vibrant-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: white; /* Fallback */
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--discord-text);
    margin-bottom: 56px;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    font-size: 1.25rem;
    padding: 24px 52px;
}

.cta-note {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--discord-text-muted);
    margin-top: 32px;
}

.cta-note i {
    color: var(--discord-green);
    margin-right: 12px;
}

.cta-note a {
    color: var(--discord-blurple);
    text-decoration: none;
    font-weight: 800;
    transition: all 0.2s ease;
}

.cta-note a:hover {
    color: var(--vibrant-pink);
    text-decoration: underline;
}

/* FOOTER */
.footer {
    background: var(--discord-black);
    color: var(--discord-text-dark);
    padding: 64px 20px 32px;
    text-align: center;
    border-top: 1px solid rgba(88, 101, 242, 0.1);
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-small {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--discord-text-dark);
    font-weight: 400;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step-arrow {
        display: none;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 8px 10px;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 80px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        padding: 32px 24px;
        gap: 20px;
    }

    .hero-subtitle::before {
        width: 120%;
        height: 150%;
        filter: blur(15px);
    }

    .subtitle-description {
        font-size: 1.125rem;
    }

    .investment-highlight {
        font-size: 1.25rem;
    }

    .investment-details {
        font-size: 1rem;
    }

    .subtitle-investment {
        gap: 10px;
        padding-top: 12px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat {
        padding: 36px 24px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn, .btn-large {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }

    .investment-box {
        padding: 48px 28px;
        flex-direction: column;
    }

    .amount-card {
        min-width: 200px;
        padding: 36px 28px;
    }

    .amount-card .amount {
        font-size: 3rem;
    }

    .arrow {
        transform: rotate(90deg);
        font-size: 2.5rem;
    }

    .roi-badge {
        font-size: 1.375rem;
        padding: 18px 36px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    /* Mostrar botón hamburguesa en móvil */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Menú móvil oculto por defecto */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(30, 33, 44, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 12px;
        border-left: 1px solid rgba(88, 101, 242, 0.3);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        overflow-y: auto;
    }

    /* Menú móvil abierto */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

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

    .nav-menu a:hover {
        background: rgba(88, 101, 242, 0.2);
        transform: translateX(5px);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 16px 24px !important;
        font-size: 15px !important;
    }

    .container-nav {
        padding: 16px 20px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .logo-icon i {
        font-size: 1.3rem;
    }

    .logo-brand {
        font-size: 1.5rem;
    }

    .logo-domain {
        font-size: 1.3rem;
    }

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

    .benefit-item {
        padding: 40px 28px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }


    .airlines-section::before {
        display: none;
    }

    .logos-container {
        gap: 32px;
    }

    .logo-box {
        width: 150px;
        height: 75px;
    }

    .step {
        padding: 40px 28px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .step h3 {
        font-size: 1.375rem;
    }

    .promo-banner {
        padding: 60px 20px;
    }

    .promo-title {
        font-size: 1.75rem;
        letter-spacing: -1px;
    }

    .promo-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    .promo-visual {
        gap: 24px;
        margin-bottom: 32px;
    }

    .promo-amount-card {
        padding: 32px 28px;
    }

    .promo-number {
        font-size: 2.75rem;
    }

    .promo-arrow {
        transform: rotate(90deg);
        font-size: 2.5rem;
    }
}

/* =========================
   AIRLINES SECTION
   ========================= */
.airlines-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1d2e 0%, #0f111a 100%);
    position: relative;
    overflow: hidden;
}

.airlines-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 115, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite;
}

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

.airlines-header {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.airlines-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.airlines-badge:first-child {
    border-color: rgba(88, 101, 242, 0.5);
    color: #5865F2;
}

.airlines-badge:last-child {
    border-color: rgba(255, 115, 250, 0.5);
    color: #FF73FA;
}

.airlines-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.airlines-badge:hover::before {
    left: 100%;
}

.airlines-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.3);
}

.airlines-badge i {
    font-size: 1.25rem;
}

.airlines-main-title {
    margin-top: 24px;
    background: linear-gradient(135deg, #5865F2 0%, #FF73FA 50%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: gradient-shift 6s ease infinite;
    background-size: 200% 200%;
}

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

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.airline-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 130px;
    animation: fade-in-up 0.6s ease-out backwards;
}

.airline-card:nth-child(1) { animation-delay: 0.05s; }
.airline-card:nth-child(2) { animation-delay: 0.1s; }
.airline-card:nth-child(3) { animation-delay: 0.15s; }
.airline-card:nth-child(4) { animation-delay: 0.2s; }
.airline-card:nth-child(5) { animation-delay: 0.25s; }
.airline-card:nth-child(6) { animation-delay: 0.3s; }
.airline-card:nth-child(7) { animation-delay: 0.35s; }
.airline-card:nth-child(8) { animation-delay: 0.4s; }
.airline-card:nth-child(9) { animation-delay: 0.45s; }
.airline-card:nth-child(10) { animation-delay: 0.5s; }
.airline-card:nth-child(11) { animation-delay: 0.55s; }
.airline-card:nth-child(12) { animation-delay: 0.6s; }

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.airline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(255, 115, 250, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.airline-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.airline-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 
        0 24px 80px rgba(88, 101, 242, 0.25),
        0 0 0 1px rgba(88, 101, 242, 0.3) inset,
        0 0 40px rgba(255, 115, 250, 0.2);
}

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

.airline-card:hover::after {
    width: 200px;
    height: 200px;
}

.airline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.airline-content i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #5865F2 0%, #FF73FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.airline-card[data-type="hotel"] .airline-content i,
.airline-card[data-type="travel"] .airline-content i {
    background: linear-gradient(135deg, #FF73FA 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.airline-name {
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.airline-card:hover .airline-content i {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 8px 16px rgba(88, 101, 242, 0.5));
}

.airline-card:hover .airline-name {
    color: #5865F2;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
}

.airline-card[data-type="hotel"]:hover .airline-name,
.airline-card[data-type="travel"]:hover .airline-name {
    color: #FF73FA;
    text-shadow: 0 0 20px rgba(255, 115, 250, 0.6);
}

.airline-card:has(.airline-logo) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 24px;
}

.airline-card:has(.airline-logo)::before {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(255, 115, 250, 0.08) 100%);
}

.airline-card:has(.airline-logo):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 
        0 24px 80px rgba(88, 101, 242, 0.25),
        0 0 0 2px rgba(88, 101, 242, 0.3) inset,
        0 0 40px rgba(255, 115, 250, 0.2);
}

.airline-logo {
    width: 140px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
}

.airline-card:hover .airline-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.airline-text-logo {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.airline-card:hover .airline-text-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.airlines-footer {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.airlines-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(255, 115, 250, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(255, 115, 250, 0.2) 100%);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 16px 48px rgba(88, 101, 242, 0.2);
}

.stat-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, #5865F2, #FF73FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #B9BBBE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--discord-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .airlines-section {
        padding: 80px 0;
    }

    .airlines-header {
        gap: 16px;
        margin-bottom: 36px;
    }

    .airlines-badge {
        padding: 12px 24px;
        font-size: 0.875rem;
        gap: 8px;
    }

    .airlines-badge i {
        font-size: 1rem;
    }

    .airlines-main-title {
        font-size: 2rem;
    }

    .airlines-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
        margin: 48px 0;
    }

    .airline-card {
        padding: 28px 18px;
        min-height: 110px;
        border-radius: 16px;
    }

    .airline-content i {
        font-size: 2rem;
    }

    .airline-name {
        font-size: 1rem;
    }

    .airline-logo {
        width: 120px;
        height: 50px;
    }

    .airline-card:has(.airline-logo) {
        padding: 20px;
    }

    .airline-text-logo {
        font-size: 1.25rem;
    }

    .airlines-footer {
        margin-top: 60px;
    }

    .airlines-stats {
        gap: 24px;
    }

    .stat-item {
        padding: 20px 28px;
        min-width: 140px;
    }

    .stat-item i {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container-nav {
        padding: 14px 16px;
    }

    .logo {
        gap: 12px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-icon i {
        font-size: 1.1rem;
    }

    .logo-brand {
        font-size: 1.3rem;
    }

    .logo-domain {
        font-size: 1.1rem;
    }

    .hero {
        padding: 100px 16px 60px;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .promo-visual {
        flex-direction: column;
        gap: 20px;
    }

    .promo-amount-card {
        min-width: 180px;
        padding: 32px 24px;
    }

    .promo-number {
        font-size: 2.5rem;
    }

    .promo-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
}
