/* ROOT VARIABLES */
:root {
    --bg-primary: #121212;
    --bg-secondary: #1c1c1c;
    --bg-card: #242424;
    --bg-card-hover: #2e2e2e;

    --accent: #00ECB9;
    --accent-glow: rgba(0, 236, 185, 0.4);
    --accent-dark: #00b38c;

    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    --font-heading: 'Gilroy', 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* IMPORT CUSTOM GILROY FONT */
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.1rem;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

/* UTILITIES */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 2rem 0;
}

.relative {
    position: relative;
}

.center {
    text-align: center;
}

.text-highlight {
    color: var(--accent) !important;
}

.mr-2 {
    margin-right: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 1rem;
}

.link-arrow:hover {
    gap: 0.8rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    /* Altura ajustada del logo */
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 200;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-carousel {
    width: 100%;
    min-height: 80vh;
    position: relative;
}

.carousel-inner {
    width: 100%;
    min-height: 80vh;
    position: relative;
}

.carousel-item {
    display: none;
    width: 100%;
    min-height: 80vh;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    display: block;
    opacity: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator-dot.active {
    background: transparent;
    border-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-glow);
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.glow-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(0, 236, 185, 0.3);
}

.glow-2 {
    bottom: -20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 236, 185, 0.2);
}

/* Light Beam Effect */
.light-beam {
    position: absolute;
    bottom: 0;
    right: 15%;
    /* Movido al lado derecho */
    width: 250px;
    height: 80vh;
    /* No llega a la cima, evitando la navbar */
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    /* Efecto de resplandor externo en todo el contenedor */
    filter: drop-shadow(0 0 20px rgba(130, 80, 255, 0.8)) drop-shadow(0 0 50px rgba(0, 236, 185, 0.6));
}

.light-beam::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* Degradado que se vuelve más débil hacia arriba */
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(130, 80, 255, 0.5) 40%, rgba(0, 236, 185, 0.2) 70%, transparent 100%);
    /* Forma de cono ancho en la base, afinándose arriba */
    clip-path: polygon(48% 0, 52% 0, 100% 100%, 0 100%);
    filter: blur(8px);
    animation: beam-pulse 4s infinite alternate ease-in-out;
    transform-origin: bottom;
}

.light-beam::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 40%;
    /* Núcleo más brillante y delgado */
    height: 100%;
    background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.7) 40%, transparent 100%);
    clip-path: polygon(49% 0, 51% 0, 80% 100%, 20% 100%);
    filter: blur(3px);
    animation: beam-travel 2.5s infinite linear;
    transform-origin: bottom;
}

@keyframes beam-pulse {
    0% {
        opacity: 0.4;
        transform: scaleY(0.95);
    }

    100% {
        opacity: 1;
        transform: scaleY(1.05);
    }
}

@keyframes beam-travel {
    0% {
        background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.7) 30%, transparent 80%);
        opacity: 0.6;
    }

    50% {
        background: linear-gradient(to top, transparent 10%, #ffffff 50%, transparent 90%);
        opacity: 1;
    }

    100% {
        background: linear-gradient(to top, transparent 40%, rgba(255, 255, 255, 0.7) 80%, #ffffff 100%);
        opacity: 0.6;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 2rem 1rem;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 236, 185, 0.1);
    border: 1px solid rgba(0, 236, 185, 0.3);
    border-radius: 30px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Hero Abstract Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /* Alineado a la izquierda */
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    /* Un poco más grande para el lado izquierdo */
    aspect-ratio: auto;
    overflow: visible;
    z-index: 10;
}

.hero-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    mix-blend-mode: lighten;
    border-radius: 0;
}

.hero-image-wrapper:hover .hero-person-img {
    transform: scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 40%);
    pointer-events: none;
}

.hero-fundido-shape {
    position: absolute;
    top: 0;
    right: -2px;
    /* Evita línea dura */
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, var(--bg-primary) 90%);
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    padding-left: 2rem;
}

/* Slide 2 Custom Styles */
.bg-cover-item {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4rem;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

#hero {
    cursor: default;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top-gradient {
    /* 
       Para ajustar la opacidad, fíjate en el cuarto valor de cada "rgba(R, G, B, opacidad)". 
       0 es totalmente transparente y 1 es totalmente sólido.
       Por ejemplo: rgba(18, 18, 18, 0.5) tiene 50% de opacidad. 
    */
    background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.5) 50%, rgba(18, 18, 18, 0.3) 100%);
    z-index: 1;
}

.right-gradient {
    background: linear-gradient(to right, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.2) 70%, transparent 100%);
    z-index: 2;
}

.full-width-grid {
    grid-template-columns: 1fr !important;
    z-index: 10;
}

.max-w-3xl {
    max-width: 800px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 236, 185, 0.1);
    border: 1px solid rgba(0, 236, 185, 0.3);
    border-radius: 9999px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    gap: 0.5rem;
}

.dot-green-wrapper {
    position: relative;
    display: flex;
    height: 8px;
    width: 8px;
}

.dot-green-ping {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot-green {
    position: relative;
    display: inline-flex;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.uppercase-title {
    text-transform: uppercase;
}

.display-title {
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.highlight-gradient {
    background: linear-gradient(to right, var(--accent), #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.subtitle-max {
    max-width: 42rem;
    color: #cbd5e1;
    margin-top: 1.5rem;
}

.coverage-form {
    margin-top: 2.5rem;
    max-width: 32rem;
    width: 100%;
}

.coverage-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 3.5rem;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 236, 185, 0.3);
    background: rgba(36, 36, 36, 0.8);
    box-shadow: 0 10px 15px -3px rgba(0, 236, 185, 0.05);
    transition: all 0.3s;
}

.coverage-input-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(0, 236, 185, 0.5);
}

.text-primary-70 {
    color: rgba(0, 236, 185, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    font-size: 1.25rem;
}

.coverage-input {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    padding: 0 0.5rem;
}

.coverage-input::placeholder {
    color: #64748b;
}

.btn-consultar {
    height: 2.5rem;
    margin-right: 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0 1.5rem;
    transition: background-color 0.3s;
}

.btn-consultar:hover,
.hover-emerald:hover {
    background-color: #4ade80;
}

.coverage-disclaimer {
    display: block;
    margin-top: 0.75rem;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

/* PLANS SECTION */
.plans-section {
    background-color: var(--bg-secondary);
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3rem;
}

/* Plans Toggle Styles */
.plans-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.plans-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn:hover {
    color: var(--text-primary);
}

.toggle-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Animacion cuando cambia */
.plans-grid-view {
    animation: fadeInTab 0.4s ease forwards;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.plan-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 236, 185, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--bg-card-hover);
}

.plan-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 236, 185, 0.1);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 20px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-speed {
    font-size: 3.5rem;
    color: var(--text-primary);
    line-height: 1;
}

.plan-speed .unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0;
}

.plan-price .period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.plan-features i {
    color: var(--accent);
}

/* NEW PLAN CARDS REDESIGN */
.plans-grid-view {
    max-width: 1050px;
    margin: 0 auto;
}

.plan-card.custom-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 12px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.plan-card.custom-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 236, 185, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.plan-card.custom-card.highlighted {
    border: 2px solid var(--accent);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 236, 185, 0.1);
}

.plan-card.custom-card.highlighted:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 236, 185, 0.2);
}

.popular-banner {
    background-color: var(--accent);
    color: #000;
    text-align: center;
    font-weight: 800;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    text-transform: uppercase;
}

.text-bolt {
    color: #d97706;
    /* orange bolt */
}

.plan-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.plan-speed-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.plan-speed-title .plan-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: none;
    font-family: var(--font-body);
}

.plan-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.plan-price-new {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    font-family: var(--font-heading);
}

.plan-price-new .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan-price-old {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.3rem;
    text-decoration: line-through;
}

.plan-promo-pill {
    background: #1e3a47;
    color: #38bdf8;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    align-self: flex-start;
}

.pill-icon {
    color: #fca5a5;
}

.plan-includes {
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 0;
}

.plan-includes h4 {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.plan-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.plan-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
}

.tag-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.tag-dark {
    background: #2a2a2a;
    color: #d1d5db;
}

.tag-dark i {
    color: #d97706;
}

.tag-purple {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
}

.custom-features {
    margin-bottom: 0;
}

.custom-features li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #ccc;
    display: flex;
    align-items: flex-start;
}

.custom-features li i {
    margin-top: 0.2rem;
    font-size: 0.8rem;
}

.text-success {
    color: var(--accent) !important;
}

.custom-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    text-align: center;
    border-top: none;
    margin-bottom: 0;
}

.custom-btn {
    border-radius: 50px;
    font-weight: 700;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

.conoce-mas {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-size: 0.85rem;
    text-decoration: underline;
    font-weight: 500;
}

.precio-sin-iva {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0;
}

/* =========================================
   PROMO BANNER - OPCIÓN 1 (CYBERPUNK)
========================================= */
.banner-section {
    padding: 3rem 0;
    background-color: var(--bg-secondary);
}

.promo-opt1-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: #050a0f;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 236, 185, 0.1);
    border: 1px solid rgba(0, 236, 185, 0.2);
}

.promo-opt1-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
    transition: transform 0.1s ease-out;
}

.promo-opt1-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 2;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.15;
        transform: translateY(-50%) scale(0.9);
    }

    100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(1.1);
    }
}

.promo-opt1-glass {
    position: relative;
    z-index: 3;
    margin-left: 3rem;
    width: 100%;
    max-width: 500px;
    background: rgba(10, 15, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.promo-opt1-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.promo-opt1-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(0, 236, 185, 0.3);
}

.promo-opt1-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 236, 185, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 236, 185, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.promo-opt1-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.text-neon {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(0, 236, 185, 0.5);
}

.promo-opt1-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-neon-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 236, 185, 0.15);
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(0, 236, 185, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-neon-glass:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 236, 185, 0.6);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .promo-opt1-img {
        width: 100%;
        mask-image: linear-gradient(to bottom, transparent, black 80%);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 80%);
    }

    .promo-opt1-glass {
        margin: 2rem 1rem;
        padding: 2rem;
        background: rgba(10, 15, 20, 0.8);
    }

    .promo-opt1-number {
        font-size: 4rem;
    }
}

/* Cursor Glow */
.opt4-cursor-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 236, 185, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.promo-opt1-container:hover .opt4-cursor-glow {
    opacity: 1;
}



/* ACTIVITIES SECTION */
.activities-section {
    background-color: var(--bg-primary);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.activity-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 236, 185, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.activity-img {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-card) 100%);
}

.activity-content {
    padding: 2rem;
    position: relative;
}

.activity-icon {
    position: absolute;
    top: -25px;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px var(--accent-glow);
}

.activity-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.activity-content p {
    margin-bottom: 0;
}

/* PAYMENT BAR */
.payment-methods-bar {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.payment-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.payment-title {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    color: var(--text-secondary);
    font-weight: 500;
}

.dot-separator {
    color: var(--accent);
}

/* FAQ SECTION */
.faq {
    --faq-accent: #14e3a5;
    position: relative;
    overflow: hidden;
    background: #060d09;
    padding: clamp(72px,10vw,120px) 0 clamp(80px,11vw,130px);
}

.faq-glow-a {
    position: absolute;
    top: -180px;
    left: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(20,227,165,.13) 0%, transparent 70%);
    pointer-events: none;
}

.faq-glow-b {
    position: absolute;
    bottom: -160px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(20,227,165,.08) 0%, transparent 70%);
    pointer-events: none;
}

.faq-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20,227,165,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,227,165,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.faq-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,60px);
    position: relative;
    z-index: 2;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--faq-accent);
    margin-bottom: 14px;
}

.faq-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--faq-accent);
    border-radius: 2px;
}

.faq-title {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: clamp(28px,4.5vw,52px);
    font-weight: 800;
    color: #eafaf3;
    line-height: 1.12;
    margin: 0 0 14px;
    letter-spacing: -.02em;
}

.faq-title span {
    color: var(--faq-accent);
}

.faq-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px,1.6vw,16.5px);
    color: rgba(206,228,218,.65);
    margin: 0;
    line-height: 1.6;
}

.faq-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px,4vw,44px);
}

.faq-tab {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(20,227,165,.25);
    background: rgba(20,227,165,.06);
    color: rgba(206,228,218,.75);
    cursor: pointer;
    transition: all .22s;
    letter-spacing: .02em;
}

.faq-tab:hover {
    border-color: var(--faq-accent);
    color: var(--faq-accent);
    background: rgba(20,227,165,.1);
}

.faq-tab.active {
    background: var(--faq-accent);
    border-color: var(--faq-accent);
    color: #04130e;
    box-shadow: 0 0 18px rgba(20,227,165,.35);
}

.faq-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(32px,5vw,64px);
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: 14px;
    border: 1.5px solid rgba(20,227,165,.12);
    background: rgba(10,22,16,.7);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color .22s;
}

.faq-item:hover {
    border-color: rgba(20,227,165,.3);
}

.faq-item.open {
    border-color: rgba(20,227,165,.45);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: none;
    border: none;
    color: #d4ede3;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13.5px,1.5vw,15.5px);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color .2s;
    line-height: 1.4;
}

.faq-q:hover {
    color: var(--faq-accent);
}

.faq-item.open .faq-q {
    color: var(--faq-accent);
}

.faq-ic {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(20,227,165,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--faq-accent);
    transition: transform .3s, background .2s;
}

.faq-item.open .faq-ic {
    background: rgba(20,227,165,.15);
    transform: rotate(45deg);
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.4,0,.2,1);
}

.faq-item.open .faq-ans {
    max-height: 400px;
}

.faq-ans p {
    padding: 0 22px 20px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13px,1.4vw,14.5px);
    color: rgba(206,228,218,.72);
    line-height: 1.7;
}

.faq-phonewrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.faq-phonefloat {
    animation: faq-float 4.5s ease-in-out infinite;
}

@keyframes faq-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.faq-phone {
    width: 226px;
    transform: rotateY(-14deg) rotateX(6deg);
    transform-style: preserve-3d;
    filter: drop-shadow(0 32px 48px rgba(0,0,0,.7)) drop-shadow(0 0 40px rgba(20,227,165,.18));
}

.faq-shell {
    background: #0e1a14;
    border-radius: 36px;
    padding: 10px;
    border: 2.5px solid rgba(20,227,165,.22);
    box-shadow:
        inset 0 0 0 1.5px rgba(20,227,165,.08),
        0 0 0 6px rgba(10,22,16,.6);
}

.faq-screen {
    background: #080f0b;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.faq-notch {
    width: 80px;
    height: 18px;
    background: #0e1a14;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
}

.faq-chathead {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 12px;
    border-bottom: 1px solid rgba(20,227,165,.1);
}

.faq-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14e3a5, #06b98a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #04130e;
    flex-shrink: 0;
}

.faq-msgs {
    flex: 1;
    padding: 12px 12px 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.faq-in, .faq-out {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    padding: 8px 11px;
    border-radius: 14px;
    max-width: 78%;
}

.faq-in {
    background: rgba(20,227,165,.12);
    color: #d4ede3;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.faq-out {
    background: rgba(20,227,165,.22);
    color: #eafaf3;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.faq-inputbar {
    padding: 8px 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(20,227,165,.1);
}

@media (max-width: 900px) {
    .faq-body {
        grid-template-columns: 1fr;
    }
    .faq-phonewrap {
        display: none;
    }
}

@media (max-width: 520px) {
    .faq-tabs {
        gap: 8px;
    }
    .faq-tab {
        font-size: 12.5px;
        padding: 8px 16px;
    }
}

/* CONTACTO SECTION — Canales + Testimonios */
.ct {
    --ct-accent: #14e3a5;
    --ct-gold: #ffc63d;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(120% 80% at 50% 0%, #0c2a1d 0%, #07180f 46%, #04100b 80%);
    font-family: 'Montserrat', sans-serif;
    color: #e3f3ec;
    padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 9vw, 120px);
}

@keyframes ct-drift { 0%{background-position:0 0} 100%{background-position:0 -640px} }
@keyframes ct-borderglow {
    0%,100%{ box-shadow:0 0 0 1px rgba(20,227,165,.35), 0 0 26px rgba(20,227,165,.18), inset 0 0 30px rgba(20,227,165,.05); }
    50%{ box-shadow:0 0 0 1px rgba(20,227,165,.55), 0 0 40px rgba(20,227,165,.30), inset 0 0 36px rgba(20,227,165,.08); }
}
@keyframes ct-marqL { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes ct-marqR { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

.ct-glow-a {
    position: absolute;
    top: -14%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,227,165,.22), transparent 64%);
    filter: blur(22px);
    pointer-events: none;
}
.ct-glow-b {
    position: absolute;
    bottom: -18%;
    right: -6%;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,38,255,.16), transparent 66%);
    filter: blur(22px);
    pointer-events: none;
}
.ct-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(120,200,170,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(120,200,170,.05) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: ct-drift 14s linear infinite;
    -webkit-mask-image: radial-gradient(120% 80% at 50% 10%, #000 40%, transparent 86%);
    mask-image: radial-gradient(120% 80% at 50% 10%, #000 40%, transparent 86%);
}

.ct-wrap {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.ct-h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: #f1fbf6;
}
.ct-h2 span {
    color: var(--ct-accent);
    text-shadow: 0 0 30px rgba(20,227,165,.5);
}

.ct-sub {
    text-align: center;
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.55;
    color: rgba(206,228,218,.66);
    max-width: 60ch;
    margin: 0 auto clamp(34px, 4.5vw, 52px);
}

.ct-channels {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(20,227,165,.35);
    background: rgba(8,22,16,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: clamp(22px, 3vw, 34px) clamp(20px, 3vw, 38px);
    animation: ct-borderglow 4s ease-in-out infinite;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: clamp(72px, 10vw, 128px);
}

.ct-chan {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px clamp(8px, 1.4vw, 22px);
    border-right: 1px solid rgba(20,227,165,.18);
}
.ct-chan:last-child { border-right: none; }

.ct-chan-ic {
    flex: none;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(20,227,165,.10);
    border: 1px solid rgba(20,227,165,.32);
    color: var(--ct-accent);
    box-shadow: 0 0 20px rgba(20,227,165,.14);
}

.ct-chan-t {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.25;
    color: #eafaf3;
}

.ct-row {
    position: relative;
    z-index: 3;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.ct-row.row1 { margin-bottom: -72px; z-index: 3; }
.ct-row.row2 { z-index: 4; position: relative; }

.ct-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}
.row1 .ct-track { animation: ct-marqL 48s linear infinite; }
.row2 .ct-track { animation: ct-marqR 56s linear infinite; }
.ct-row:hover .ct-track { animation-play-state: paused; }

.ct-card {
    flex: none;
    width: 250px;
    padding: 20px 20px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12,28,21,.92), rgba(7,18,13,.92));
    border: 1px solid rgba(20,227,165,.28);
    box-shadow: 0 0 0 1px rgba(20,227,165,.06), 0 0 26px rgba(20,227,165,.12), 0 0 48px rgba(176,38,255,.10), 0 18px 40px rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-stars {
    display: flex;
    gap: 4px;
}
.ct-stars i {
    font-style: normal;
    color: var(--ct-gold);
    font-size: 18px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255,198,61,.5);
}
.ct-stars i.off {
    color: rgba(255,255,255,.16);
    text-shadow: none;
}

.ct-quote {
    margin: 0;
    font-style: italic;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(214,234,225,.86);
}

.ct-name {
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ct-accent);
}

/* --- flip cards (canales) --- */
.flip { perspective: 1200px; }
.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(.5,.1,.25,1);
    transform-style: preserve-3d;
}
.flip:hover .flip-inner,
.flip:focus-within .flip-inner { transform: rotateY(180deg); }
.flip-face {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
}
.flip-back { transform: rotateY(180deg); }
@media (prefers-reduced-motion: reduce) { .flip-inner { transition: none; } }

.ct-flip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.6vw, 18px);
    margin-bottom: clamp(64px, 9vw, 112px);
}
.ct-flip-grid .flip { height: 190px; }

.ct-flip-front {
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    background: rgba(8,22,16,.6);
    border: 1px solid rgba(20,227,165,.30);
    box-shadow: 0 0 22px rgba(20,227,165,.10), inset 0 0 30px rgba(20,227,165,.04);
}
.ct-flip-icon {
    flex: none;
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(20,227,165,.10);
    border: 1px solid rgba(20,227,165,.32);
    color: var(--ct-accent);
    box-shadow: 0 0 20px rgba(20,227,165,.16);
}
.ct-flip-name {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.25;
    color: #eafaf3;
}
.ct-flip-back {
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 22px;
    background: linear-gradient(160deg, rgba(20,227,165,.16), rgba(8,22,16,.94));
    border: 1px solid rgba(20,227,165,.55);
    box-shadow: 0 0 30px rgba(20,227,165,.22), inset 0 0 34px rgba(20,227,165,.06);
}
.ct-flip-back-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(13px, 1vw, 15px);
    letter-spacing: -.01em;
    color: var(--ct-accent);
}
.ct-flip-back-desc {
    margin: 0;
    font-size: clamp(12px, .95vw, 13.5px);
    line-height: 1.5;
    color: rgba(214,234,225,.9);
}
.ct-flip-tag {
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(20,227,165,.85);
}

.ct-h2.ct-h2-sm {
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.1;
    margin-bottom: 0;
}
.ct-sub.ct-sub-sm {
    font-size: clamp(13px, 1.05vw, 15px);
    max-width: 52ch;
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .ct-channels {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }
    .ct-chan:nth-child(2n) { border-right: none; }
    .ct-flip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* FOOTER */
.footer {
    padding: 6rem 0 2rem 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-links span {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* DGO SECTION */
.dgo-section {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.dgo-energy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at 50% 10%, rgba(0, 236, 185, 0.05) 0%, transparent 80%);
}

.dgo-energy-bg svg {
    display: none;
    /* Ocultamos el viejo SVG */
}

/* Nuevos elementos futuristas decorativos para DGO */
.dgo-energy-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 236, 185, 0.5), transparent);
    box-shadow: 0 0 10px rgba(0, 236, 185, 0.8);
    animation: scanline 8s linear infinite;
}

.dgo-energy-bg::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 236, 185, 0.08) 0%, transparent 60%);
    filter: blur(40px);
    border-radius: 50%;
    animation: pulseGlow 5s infinite alternate;
}

/* Grid Cibernética superpuesta animada */
.dgo-cyber-grid {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 236, 185, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 236, 185, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(800px) rotateX(70deg) translateY(-100px) translateZ(-200px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    animation: moveGrid 10s linear infinite;
    mask-image: linear-gradient(to bottom, transparent 20%, black 60%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 20%, black 60%);
}

@keyframes moveGrid {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

/* Partículas flotantes sutiles */
.dgo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(rgba(0, 236, 185, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(rgba(145, 70, 255, 0.6) 1px, transparent 1px);
    background-size: 120px 120px, 180px 180px;
    background-position: 0 0, 40px 60px;
    animation: floatParticles 40s linear infinite;
    opacity: 0.4;
}

@keyframes floatParticles {
    0% { background-position: 0 0, 40px 60px; }
    100% { background-position: 120px 120px, 220px 240px; }
}

@keyframes scanline {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}


.dgo-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.dgo-badge {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.dgo-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-heading);
}

.dgo-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.dgo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.dgo-col-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Base Card */
.dgo-card {
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: var(--transition);
    height: 100%;
    border: none;
}

.dgo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.dgo-card-large {
    padding: 2.5rem 2rem;
    background: #141620;
    /* Very dark background for Full */
}

/* Card Lite */
.card-lite {
    background: #1e2130;
}

/* Card Universal */
.card-purple {
    background: #31276a;
}

/* Card Deporte */
.card-green {
    background: #0f6844;
}

/* Card Paramount */
.card-dark {
    background: #231d17;
}

/* Watermarks */
.dgo-card-bg-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(0deg);
    pointer-events: none;
    z-index: 0;
}

/* Background shapes inside large cards */
.dgo-card-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.dgo-bg-full-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.dgo-bg-full-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 10%;
}

/* Tags */
.dgo-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    z-index: 1;
}

.dgo-tag-green {
    background: var(--accent);
    color: #000;
}

.dgo-tag-gray {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.dgo-tag-mint {
    background: #7ef6cd;
    color: #000;
}

.dgo-tag-lilac {
    background: #c3adff;
    color: #000;
}

.dgo-tag-yellow {
    background: #ffc107;
    color: #000;
}

.dgo-card-brand {
    font-size: 0.7rem;
    font-weight: 700;
    color: #9ba1a6;
    margin-bottom: 0.4rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 1;
}

.dgo-card-title {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    z-index: 1;
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.dgo-card-large .dgo-card-title {
    font-size: 2.2rem;
}

.dgo-highlight-green {
    color: var(--accent);
}

.dgo-card-desc {
    font-size: 0.8rem;
    color: #a4b0c2;
    margin-bottom: 1.5rem;
    z-index: 1;
    flex-grow: 1;
    line-height: 1.4;
}

.dgo-card-large .dgo-card-desc {
    font-size: 0.85rem;
}

.dgo-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    z-index: 1;
}

.dgo-feature {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
}

.dgo-btn {
    display: inline-block;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: var(--transition);
    cursor: pointer;
}

.dgo-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.dgo-footer-text {
    font-size: 0.75rem;
    color: #666;
    margin-top: 1rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* PAYMENT METHODS SECTION */
.fp {
    --fp-accent: #14e3a5;
    --fp-accent-2: #06b98a;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(120% 90% at 14% 16%, #11271d 0%, #0b1812 48%, #070d0a 82%);
    font-family: 'Montserrat', sans-serif;
    color: #e3f3ec;
}

@keyframes fp-drift { 0%{background-position:0 0} 100%{background-position:0 -640px} }
@keyframes fp-floatcard { 0%,100%{transform:translateY(0) rotate(-6deg)} 50%{transform:translateY(-16px) rotate(-6deg)} }
@keyframes fp-shine { 0%{transform:translateX(-120%) skewX(-18deg)} 60%,100%{transform:translateX(320%) skewX(-18deg)} }
@keyframes fp-orbit { 0%{transform:rotate(0deg) translateX(150px) rotate(0deg)} 100%{transform:rotate(360deg) translateX(150px) rotate(-360deg)} }

.fp-glow-a {
    position: absolute;
    top: -12%;
    left: -8%;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,227,165,.22), transparent 64%);
    filter: blur(22px);
    pointer-events: none;
}
.fp-glow-b {
    position: absolute;
    bottom: -18%;
    right: -10%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,38,255,.14), transparent 66%);
    filter: blur(22px);
    pointer-events: none;
}
.fp-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(120,200,170,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(120,200,170,.05) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: fp-drift 14s linear infinite;
    -webkit-mask-image: radial-gradient(120% 90% at 50% 30%, #000 40%, transparent 86%);
    mask-image: radial-gradient(120% 90% at 50% 30%, #000 40%, transparent 86%);
}

.fp-inner {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 60vh;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
    padding: clamp(32px, 5vw, 72px);
}

/* Visual / tarjeta (izquierda) */
.fp-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.fp-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(20,227,165,.16);
}
.fp-ring.dash {
    width: 360px;
    height: 360px;
    border: 1px dashed rgba(20,227,165,.10);
}
.fp-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    animation: fp-orbit 16s linear infinite;
}
.fp-orbit.delay { animation-delay: -8s; }
.fp-badge {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(10,20,15,.85);
}
.fp-badge.green {
    border: 1px solid rgba(20,227,165,.3);
    box-shadow: 0 0 20px rgba(20,227,165,.18);
    color: #14e3a5;
}
.fp-badge.violet {
    border: 1px solid rgba(176,38,255,.34);
    box-shadow: 0 0 20px rgba(176,38,255,.2);
    color: #c78bff;
}

.fp-card {
    position: relative;
    z-index: 4;
    width: 330px;
    height: 208px;
    border-radius: 18px;
    overflow: hidden;
    padding: 24px;
    background: linear-gradient(135deg, #0d0d0d 0%, #111111 60%, #1a1a1a 100%);
    border: 1px solid rgba(20,227,165,.4);
    box-shadow: 0 0 0 1px rgba(20,227,165,.12), 0 24px 60px rgba(0,0,0,.55), 0 0 50px rgba(20,227,165,.22);
    animation: fp-floatcard 6s ease-in-out infinite;
}
.fp-card-shine {
    position: absolute;
    top: -40%;
    left: 0;
    width: 40%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    animation: fp-shine 5s ease-in-out infinite;
}
.fp-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.fp-chipgold {
    width: 46px;
    height: 34px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e8d48a, #c9a84a);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
.fp-card-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    color: rgba(234,250,243,.85);
}
.fp-card-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: .14em;
    color: #eafaf3;
    margin-top: 30px;
}
.fp-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}
.fp-card-label {
    font-size: 9px;
    letter-spacing: .1em;
    color: rgba(206,228,218,.55);
}
.fp-card-holder {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #eafaf3;
}
.fp-card-visa {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.fp-secure {
    position: absolute;
    bottom: 18px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(10,20,15,.86);
    border: 1px solid rgba(20,227,165,.35);
    box-shadow: 0 10px 26px rgba(0,0,0,.4);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #eafaf3;
}

/* Copy (derecha) */
.fp-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--fp-accent);
    margin-bottom: 20px;
}
.fp-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5.2vw, 72px);
    line-height: .98;
    letter-spacing: -.02em;
    margin: 0 0 32px;
    color: #f1fbf6;
}
.fp-title span {
    color: var(--fp-accent);
    text-shadow: 0 0 30px rgba(20,227,165,.5);
}
.fp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--fp-accent), var(--fp-accent-2));
    color: #04130e;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 14px 40px rgba(20,227,165,.32);
    transition: transform .18s ease, box-shadow .18s ease;
    margin-bottom: 34px;
}
.fp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 52px rgba(20,227,165,.5);
    color: #04130e;
    text-decoration: none;
}
.fp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 28px;
}
.fp-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(20,227,165,.22);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #eafaf3;
    transition: background .18s ease, border-color .18s ease;
}
.fp-chip:hover {
    border-color: rgba(20,227,165,.6);
    background: rgba(20,227,165,.12);
}
.fp-foot {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(206,228,218,.66);
    margin: 0;
    max-width: 40ch;
}
.fp-foot b { color: #eafaf3; }

@media (max-width: 860px) {
    .fp-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fp-visual { order: 1; min-height: 340px; }
    .fp-copy { order: 2; }
}


/* REVEAL ANIMATIONS */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .plans-grid,
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dgo-grid {
        grid-template-columns: 1fr;
    }

    .payment-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        text-align: center;
        padding-top: 8rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }

    .hero-visual {
        display: none;
    }

    .promo-overlay {
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
    }

    .promo-banner {
        align-items: flex-end;
        justify-content: center;
        min-height: 450px;
    }

    .promo-content {
        text-align: center;
        padding: 2rem;
        width: 100%;
    }

    .promo-badge {
        justify-content: center;
    }

    .promo-title {
        font-size: 1.8rem;
    }

    .promo-number {
        font-size: 5rem;
    }

    .promo-link {
        font-size: 1rem;
    }

    .plans-grid,
    .activities-grid,
    .dgo-grid {
        grid-template-columns: 1fr;
    }

    /* Plan cards horizontales rectangulares en mobile */
    .plans-grid-view {
        max-width: 100%;
        margin: 0;
    }

    .plan-card.custom-card {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .plan-content {
        padding: 0 0 1rem 0;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }

    .popular-banner {
        margin-bottom: 1rem;
        border-radius: 6px;
    }

    .plan-speed-title {
        font-size: 1.35rem;
        margin-bottom: 0;
        width: 50%;
        text-align: left;
    }

    .plan-pricing {
        width: 50%;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .plan-price-new {
        font-size: 1.8rem;
    }

    .plan-promo-pill {
        align-self: flex-end;
        margin-top: 0.5rem;
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .plan-includes {
        width: 100%;
        margin-top: 1rem;
        padding: 0.8rem 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-includes h4 {
        margin-bottom: 0.5rem;
    }

    .plan-features.custom-features {
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.2rem 1rem;
    }

    .custom-features li {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
        align-items: center;
    }

    .custom-features li i {
        margin-top: 0;
    }

    .custom-footer {
        padding: 0;
        margin-top: 0.5rem;
    }

    /* Footer adaptado a cuadrantes 2x2 */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .footer-col {
        text-align: justify;
    }

    .brand-col {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-desc {
        text-align: justify;
    }

    .section {
        padding: 6rem 0;
    }
}


/* Custom Top Floating Bar */
.top-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(90deg, #00ECB9, #4ade80);
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 236, 185, 0.3);
    transition: var(--transition);
}

.top-nav-bar:hover {
    filter: brightness(1.1);
    color: #121212;
}

/* Adjust navbar and mobile menu for top bar */
.navbar {
    top: 1rem !important;
}

.mobile-menu.active {
    top: 35px !important;
    height: calc(100vh - 35px) !important;
}

/* BOTTOM CTA SECTION */
.cta {
    position: relative;
    min-height: 60vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(130% 110% at 50% 120%, #102a1f 0%, #0a1a14 46%, #05100b 82%);
    font-family: 'Montserrat', sans-serif;
    color: #eafff5;
    padding: clamp(40px,7vw,90px) clamp(20px,4vw,40px);
}

@keyframes cta-aurora1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(60px,-40px) scale(1.18)} }
@keyframes cta-aurora2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-70px,40px) scale(1.22)} }
@keyframes cta-aurora3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,50px) scale(1.12)} }
@keyframes cta-spin { to{transform:rotate(360deg)} }
@keyframes cta-spin-rev { to{transform:rotate(-360deg)} }
@keyframes cta-breathe { 0%,100%{transform:scale(1);filter:brightness(1)} 50%{transform:scale(1.045);filter:brightness(1.12)} }
@keyframes cta-ring { 0%{transform:scale(.85);opacity:.6} 100%{transform:scale(1.6);opacity:0} }
@keyframes cta-sheen { 0%{transform:translateX(-160%) skewX(-20deg)} 55%,100%{transform:translateX(360%) skewX(-20deg)} }
@keyframes cta-rise { 0%{transform:translateY(0) scale(1);opacity:0} 15%{opacity:1} 100%{transform:translateY(-120px) scale(.3);opacity:0} }
@keyframes cta-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes cta-blink { 0%,42%,48%,100%{transform:scaleY(1)} 45%{transform:scaleY(.1)} }
@keyframes cta-grid { 0%{background-position:0 0} 100%{background-position:0 -560px} }

.cta-aurora {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-aurora.a {
    top: 8%; left: 14%; width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(20,227,165,.5), transparent 62%);
    filter: blur(60px);
    animation: cta-aurora1 16s ease-in-out infinite;
}
.cta-aurora.b {
    bottom: 2%; right: 12%; width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(176,38,255,.46), transparent 64%);
    filter: blur(64px);
    animation: cta-aurora2 19s ease-in-out infinite;
}
.cta-aurora.c {
    top: 30%; left: 54%; width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(43,255,136,.3), transparent 66%);
    filter: blur(58px);
    animation: cta-aurora3 22s ease-in-out infinite;
}
.cta-gridbg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(120,200,170,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(120,200,170,.06) 1px, transparent 1px);
    background-size: 56px 56px;
    animation: cta-grid 16s linear infinite;
    -webkit-mask-image: radial-gradient(120% 90% at 50% 50%, #000 35%, transparent 82%);
    mask-image: radial-gradient(120% 90% at 50% 50%, #000 35%, transparent 82%);
}

.cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(34px,5vw,52px);
}
.cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #5fe6b8;
    margin-bottom: 18px;
}
.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(38px,6vw,76px);
    line-height: .98;
    letter-spacing: -.03em;
    margin: 0;
    color: #f1fff8;
}
.cta-title span {
    background: linear-gradient(105deg, #14e3a5, #9b5cff 55%, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px,2.6vw,30px);
    flex-wrap: wrap;
}

.cta-solid {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 999px;
    background: linear-gradient(110deg, #14e3a5, #7c3aed 58%, #b026ff);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(17px,1.5vw,20px);
    box-shadow: 0 16px 44px rgba(20,227,165,.4), 0 0 40px rgba(176,38,255,.22);
    transition: transform .2s ease, box-shadow .2s ease;
}
.cta-solid:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(20,227,165,.5), 0 0 50px rgba(176,38,255,.35);
}
.cta-solid .sheen {
    position: absolute;
    top: 0; left: 0;
    width: 36%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    animation: cta-sheen 4.5s ease-in-out infinite;
}

.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    padding: 19px 36px;
    border-radius: 999px;
    background: rgba(255,255,255,.02);
    border: 1.5px solid rgba(95,230,184,.5);
    color: #d8ffee;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(17px,1.5vw,20px);
    transition: color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cta-ghost:hover {
    color: #fff;
    border-color: rgba(95,230,184,.95);
    box-shadow: 0 0 40px rgba(40,200,150,.28);
}

.cta-orb {
    position: relative;
    flex: none;
    width: 184px; height: 184px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: cta-float 5s ease-in-out infinite;
    transition: transform .25s ease;
}
.cta-orb:hover { transform: translateY(-6px) scale(1.04); }
.cta-orb .ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    animation: cta-ring 3s ease-out infinite;
}
.cta-orb .ring.g { border: 1px solid rgba(95,230,184,.5); }
.cta-orb .ring.v { border: 1px solid rgba(176,38,255,.5); animation-delay: 1.5s; }
.cta-orb .halo1 {
    position: absolute; inset: -7px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #14e3a5, #b026ff, #2bff88, #7c3aed, #14e3a5);
    filter: blur(7px);
    opacity: .85;
    animation: cta-spin 6s linear infinite;
}
.cta-orb .halo2 {
    position: absolute; inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, #2bff88, #7c3aed, #14e3a5, #b026ff, #2bff88);
    animation: cta-spin-rev 9s linear infinite;
}
.cta-orb .dot1 {
    position: absolute; top: 50%; left: 50%;
    width: 0; height: 0;
    animation: cta-spin 7s linear infinite;
}
.cta-orb .dot1 i {
    position: absolute;
    transform: translate(-50%,-50%) translateX(102px);
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #7cffd0;
    box-shadow: 0 0 12px #7cffd0;
}
.cta-orb .dot2 {
    position: absolute; top: 50%; left: 50%;
    width: 0; height: 0;
    animation: cta-spin-rev 5.5s linear infinite;
}
.cta-orb .dot2 i {
    position: absolute;
    transform: translate(-50%,-50%) translateX(98px);
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #c084fc;
    box-shadow: 0 0 12px #c084fc;
}
.cta-orb .core {
    position: relative; z-index: 2;
    width: 166px; height: 166px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: radial-gradient(circle at 38% 32%, #0f3a2a, #06160f 78%);
    box-shadow: inset 0 2px 12px rgba(150,240,200,.25), inset 0 -10px 24px rgba(0,0,0,.5);
    animation: cta-breathe 3.4s ease-in-out infinite;
}
.cta-orb .core span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.15;
    text-align: center;
    color: #eafff5;
}
.cta-blinkL {
    transform-box: fill-box;
    transform-origin: center;
    animation: cta-blink 4s ease-in-out infinite;
}
.cta-blinkR {
    transform-box: fill-box;
    transform-origin: center;
    animation: cta-blink 4s ease-in-out infinite;
}

.cta-sparks {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

@media (max-width: 620px) {
    .cta-buttons { flex-direction: column; }
}

/* WELCOME POPUP */
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.welcome-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.welcome-popup-content {
    background: transparent; /* No background since we have image */
    border: none;
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 400px;
    height: auto;
    max-height: 70vh;
    overflow: hidden; /* To keep the border radius for the image */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
}

.welcome-popup-overlay.show .welcome-popup-content {
    transform: translateY(0) scale(1);
}

.popup-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.popup-dynamic-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.welcome-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.welcome-popup-close:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .welcome-popup-overlay {
        background: transparent;
        backdrop-filter: none;
        pointer-events: none;
        align-items: flex-end;
    }
    .welcome-popup-content {
        pointer-events: all;
        width: 100%;
        max-width: 100%;
        max-height: 45vh;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -6px 32px rgba(0,0,0,.55);
        transform: translateY(100%);
    }
    .welcome-popup-overlay.show .welcome-popup-content {
        transform: translateY(0);
    }
}
/* DGO Toggle Switch */
.dgo-toggle-container { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 1rem; }
.dgo-toggle-text { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.dgo-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.dgo-switch input { opacity: 0; width: 0; height: 0; }
.dgo-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ffffff; transition: .4s; border-radius: 24px; border: 1px solid #666; }
.dgo-slider:before { position: absolute; content: ''; height: 16px; width: 16px; left: 4px; bottom: 3px; background-color: #333; transition: .4s; border-radius: 50%; }
input:checked + .dgo-slider { background-color: var(--accent); border-color: var(--accent); }
input:checked + .dgo-slider:before { transform: translateX(20px); background-color: white; }

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ============================================================
   NEON PLANS SECTION
   ============================================================ */

@keyframes neonpulse {
    0%, 100% { filter: drop-shadow(0 0 4px var(--g)) drop-shadow(0 0 13px var(--g)); }
    50%       { filter: drop-shadow(0 0 7px var(--g)) drop-shadow(0 0 22px var(--g)); }
}
@keyframes scanmove {
    0%   { background-position: 0 0; }
    100% { background-position: 0 6px; }
}
@keyframes crtflicker {
    0%,100% { opacity:.97; } 8%  { opacity:.90; } 9%  { opacity:.98; }
    20%     { opacity:.94; } 50% { opacity:.99; } 70% { opacity:.92; } 71% { opacity:.98; }
}
@keyframes flickertxt {
    0%,100%{opacity:1} 47%{opacity:1} 48%{opacity:.6} 49%{opacity:1}
    92%{opacity:1}  93%{opacity:.7} 94%{opacity:1}
}

/* Section background & ambient glows */
.plans-section {
    background: radial-gradient(120% 90% at 50% 0%, #14122b 0%, #0a0913 55%, #050409 100%) !important;
    position: relative;
    overflow: hidden;
}
.plans-section::before,
.plans-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
    z-index: 0;
}
.plans-section::before {
    top: -120px; left: 8%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(42,253,206,.16), transparent 70%);
}
.plans-section::after {
    bottom: -160px; right: 6%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,43,214,.14), transparent 70%);
}
.plans-section .container { position: relative; z-index: 1; }

/* Neon toggle pill */
.plans-neon-toggle {
    background: rgba(10,12,20,.85) !important;
    border: 1px solid rgba(42,253,206,.35) !important;
    box-shadow: 0 0 18px rgba(42,253,206,.25), inset 0 0 12px rgba(0,0,0,.6) !important;
}
.plans-neon-toggle .toggle-btn {
    font-family: 'Gilroy', 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: .95rem !important;
    color: rgba(200,220,255,.6) !important;
    padding: 14px 38px !important;
    border-radius: 34px !important;
    letter-spacing: .5px;
    background: transparent !important;
    box-shadow: none !important;
}
.plans-neon-toggle .toggle-btn.active {
    background: linear-gradient(180deg, #3bffd0, #15c79e) !important;
    color: #04130f !important;
    box-shadow: 0 0 16px rgba(42,253,206,.65) !important;
}

/* Neon wrapper */
.plans-neon-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}
/* Override JS display:grid — active view becomes block */
.plans-neon-wrapper .plans-grid-view.active {
    display: block !important;
}

/* 3D perspective container */
.plans-3d-perspective {
    perspective: 1100px;
    perspective-origin: 50% 22%;
    position: relative;
    padding-bottom: 4rem;
}

/* Depth fade — dims the far/top of the tilted stage */
.plans-depth-fade {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 210px;
    background: linear-gradient(180deg, rgba(5,4,9,.75), rgba(5,4,9,0));
    pointer-events: none;
   /* z-index: 3;*/
}

/* Tilted stage */
.plans-3d-stage {
    transform: rotateX(24deg);
    transform-origin: center bottom;
    transform-style: preserve-3d;
    display: flex !important;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

/* Card wrapper */
.neon-plan-card {
    position: relative;
    width: 340px;
    flex-shrink: 0;
    transform-origin: center center;
    transition: transform .5s cubic-bezier(.2,.85,.25,1), filter .4s;
    animation: neonpulse 3.4s ease-in-out infinite;
    cursor: pointer;
    will-change: transform;
}
.neon-plan-card:hover {
    transform: rotateX(-24deg) translateZ(70px) scale(1.05);
    z-index: 20;
}
/* Zona invisible extra para que el hover no se corte cerca del botón "Lo quiero" */
@media (min-width: 901px) {
    .neon-plan-card::after {
        content: '';
        position: absolute;
        top: -20px; left: -20px; right: -20px; bottom: -60px;
        z-index: -1;
    }
}
.neon-card-featured { padding-top: 50px; }

/* Featured top banner */
.neon-featured-banner {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, #3bffd0, #15c79e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    color: #04130f;
    text-shadow: 0 0 6px rgba(255,255,255,.5);
    z-index: 3;
}

/* Card frames — gradient border trick */
.neon-plan-frame {
    padding: 2px;
    border-radius: 18px;
    height: 100%;
}
.neon-frame-cyan     { background: linear-gradient(180deg, #46ffd6, #0fae87); }
.neon-frame-magenta  { background: linear-gradient(180deg, #ff6cf2, #c41fb0); }
.neon-frame-featured { background: linear-gradient(180deg, #3bffd0, #16d3a6 40%, #0e8f70); }

/* Card inner */
.neon-plan-inner {
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(13,15,26,.97), rgba(8,9,18,.98));
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.neon-inner-featured { border-radius: 0 0 16px 16px; }

/* Title */
.neon-plan-title {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 21px;
    white-space: nowrap;
    color: #fff;
    text-shadow: 0 0 6px rgba(170,255,235,.28);
    animation: flickertxt 7s infinite steps(1);
    margin-bottom: 4px;
    line-height: 1.2;
}

/* Subtitle */
.neon-plan-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(220,230,255,.55);
    font-weight: 500;
    margin-bottom: 14px;
}

/* Price row */
.neon-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 16px;
}
.neon-price {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 34px;
    line-height: 1;
}
.neon-price-cyan    { color: #2afdce; text-shadow: 0 0 9px rgba(42,253,206,.85); }
.neon-price-magenta { color: #ff5cf0; text-shadow: 0 0 9px rgba(255,43,214,.85); }
.neon-period {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: rgba(220,230,255,.5);
    font-weight: 600;
    margin-bottom: 0;
}
.neon-list-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    padding-left: 8px;
}
.neon-list-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .3px;
    color: rgba(220,230,255,.45);
    white-space: nowrap;
}
.neon-list-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ff4d4d;
    text-decoration: line-through;
    white-space: nowrap;
}

/* Promo Invierno — listón helado sobre el precio */
.neon-price-promo {
    position: relative;
    padding-top: 4px;
    padding-bottom: 8px;
}
.neon-price-promo .neon-price,
.neon-price-promo .neon-period {
    text-decoration: line-through;
    opacity: .5;
}
.neon-promo-ribbon {
    position: absolute;
    left: -26px; right: -26px;
    top: 46%;
    transform: translateY(-50%) rotate(-6deg);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 15px 10px;
    background: linear-gradient(100deg, #e3f7ff, #6fd0f5 45%, #0f8fd0);
    color: #052733;
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .2px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(15,143,208,.5), 0 0 16px rgba(227,247,255,.6);
}
.neon-promo-ribbon .neon-promo-price {
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
}

/* INCLUYE label */
.neon-includes-label {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(180,200,230,.45);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Badges */
.neon-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}
.neon-badge {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 11px;
    border-radius: 8px;
    color: #bdeaff;
    background: rgba(20,30,48,.7);
    border: 1px solid rgba(120,180,255,.35);
    box-shadow: 0 0 8px rgba(60,140,255,.3), inset 0 0 6px rgba(0,0,0,.4);
}

/* Features list */
.neon-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex-grow: 1;
}
.neon-feats li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(225,235,255,.82);
    font-weight: 500;
    margin-bottom: 0;
}
.neon-check { font-weight: 800; line-height: 1.35; flex-shrink: 0; }
.neon-check-cyan    { color: #2afdce; text-shadow: 0 0 6px rgba(42,253,206,.85); }
.neon-check-magenta { color: #ff5cf0; text-shadow: 0 0 6px rgba(255,43,214,.85); }

/* DSports add-on */
.neon-dsports-addon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 9px 12px;
    margin-bottom: 14px;
}
.neon-dsports-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(220,230,255,.7);
}
.neon-dsports-price { color: #2afdce; font-weight: 700; }

/* CTA Buttons */
.neon-cta {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 34px;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease;
    margin-top: auto;
}
.neon-cta-cyan {
    border: 1px solid #2afdce;
    color: #eafff9;
    background: rgba(10,14,22,.7);
    box-shadow: 0 0 12px rgba(42,253,206,.6), inset 0 0 10px rgba(0,0,0,.5);
}
.neon-cta-cyan:hover { background: rgba(42,253,206,.15); color: #fff; }
.neon-cta-magenta {
    border: 1px solid #ff5cf0;
    color: #eafff9;
    background: rgba(10,14,22,.7);
    box-shadow: 0 0 12px rgba(255,43,214,.6), inset 0 0 10px rgba(0,0,0,.5);
}
.neon-cta-magenta:hover { background: rgba(255,43,214,.15); color: #fff; }
.neon-cta-featured {
    border: none;
    color: #04130f;
    background: linear-gradient(180deg, #3bffd0, #14c79c);
    box-shadow: 0 0 16px rgba(42,253,206,.7), 0 0 34px rgba(42,253,206,.4);
    font-weight: 800;
}
.neon-cta-featured:hover {
    box-shadow: 0 0 24px rgba(42,253,206,.9), 0 0 48px rgba(42,253,206,.5);
    color: #000;
}
.neon-cta-magenta-featured {
    border: none;
    color: #fff;
    background: linear-gradient(180deg, #ff6cf2, #c41fb0);
    box-shadow: 0 0 16px rgba(255,43,214,.7), 0 0 34px rgba(255,43,214,.4);
    font-weight: 800;
}
.neon-cta-magenta-featured:hover {
    box-shadow: 0 0 24px rgba(255,43,214,.9), 0 0 48px rgba(255,43,214,.5);
}

/* CRT Overlays */
.plans-crt-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px,
        rgba(0,0,0,.1) 3px, rgba(0,0,0,.1) 4px
    );
    background-size: 100% 6px;
    animation: scanmove .9s linear infinite, crtflicker 5s infinite;
}
.plans-crt-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
    background: radial-gradient(130% 100% at 50% 50%, transparent 58%, rgba(0,0,0,.55) 100%);
    box-shadow: inset 0 0 120px rgba(0,0,0,.7);
}
.plans-crt-rgb {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
    mix-blend-mode: screen;
    opacity: .04;
    background: linear-gradient(90deg, rgba(255,0,80,.6), rgba(0,255,170,.6), rgba(60,0,255,.6));
    background-size: 6px 100%;
}

/* Responsive */
@media (max-width: 1100px) {
    .plans-3d-stage { gap: 22px; }
    .neon-plan-card { width: 290px; }
    .neon-plan-title { font-size: 18px; }
    .neon-price { font-size: 28px; }
}
@media (max-width: 900px) {
    .plans-3d-perspective { perspective: none; }
    .plans-3d-stage {
        transform: none !important;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 1rem;
    }
    .neon-plan-card {
        width: 100%;
        max-width: 380px;
        animation: none;
        filter: drop-shadow(0 0 6px var(--g));
    }
    .neon-plan-card:hover { transform: translateY(-6px) scale(1.02); }
    .plans-depth-fade { display: none; }
    .neon-plan-title { white-space: normal; font-size: 20px; }
}

/* =========================================
   SOPORTE SECTION — "Los expertos nos eligen"
   ========================================= */
.sop-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background: radial-gradient(125% 100% at 80% 22%, #2a0f3e, #120a1e 44%, #060509 80%);
}

.sop-glow-a,
.sop-glow-b {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.sop-glow-a {
    width: 600px;
    height: 600px;
    top: -150px;
    right: 10%;
    background: radial-gradient(circle, rgba(192, 38, 255, 0.18) 0%, transparent 70%);
    filter: blur(40px);
}
.sop-glow-b {
    width: 400px;
    height: 400px;
    bottom: 0;
    left: 5%;
    background: radial-gradient(circle, rgba(120, 80, 255, 0.12) 0%, transparent 70%);
    filter: blur(60px);
}

.sop-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(192, 38, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 38, 255, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    animation: sop-drift 14s linear infinite;
}

.sop-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.sop-scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(192, 38, 255, 0.4), transparent);
    animation: sop-scan 9s linear infinite;
}

.sop-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 1.05fr;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
    padding: clamp(24px, 5vw, 72px);
    position: relative;
    z-index: 1;
}

/* --- Left copy --- */
.sop-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 3vw, 40px);
    align-items: center;
    text-align: center;
}

.sop-h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(42px, 6.4vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #f6f1fb;
    margin: 0;
}
.sop-h1 span {
    color: #c026ff;
    text-shadow: 0 0 34px rgba(176, 38, 255, 0.55);
}

.sop-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 1.5vw, 23px);
    line-height: 1.55;
    color: rgba(222, 214, 234, 0.74);
    max-width: 44ch;
    margin: 0;
    text-align: center;
}

.sop-feats {
    display: flex;
    gap: clamp(20px, 2.6vw, 40px);
    justify-content: center;
    flex-wrap: wrap;
}

.sop-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sop-feat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(192, 38, 255, 0.12);
    border: 1px solid rgba(192, 38, 255, 0.35);
    color: #c026ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sop-feat-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #f3eef8;
    margin-bottom: 3px;
}

.sop-feat-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: rgba(200, 190, 214, 0.62);
    line-height: 1.4;
}

.sop-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.sop-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #c026ff, #7a1ad6);
    color: #fbf6ff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(19px, 1.6vw, 24px);
    padding: 18px 34px;
    border-radius: 999px;
    box-shadow: 0 14px 40px rgba(176, 38, 255, 0.36);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sop-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(176, 38, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.sop-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.sop-cta-aside {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sop-cta-aside strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #f3eef8;
}
.sop-cta-aside span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(200, 190, 214, 0.62);
}

/* --- Right stage --- */
.sop-stage {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 500px;
}

.sop-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(192, 38, 255, 0.2);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sop-ring-1 { width: 420px; height: 420px; }
.sop-ring-2 { width: 580px; height: 580px; border-color: rgba(120, 80, 255, 0.1); }

.sop-img {
    position: relative;
    z-index: 2;
    width: min(110%, 720px);
    max-height: 92vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.62));
}

.sop-badge {
    position: absolute;
    top: 60%;
    left: 0;
    z-index: 3;
    background: rgba(16, 10, 24, 0.74);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 38, 255, 0.3);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: sop-float 5s ease-in-out infinite;
}
.sop-badge strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #f3eef8;
}
.sop-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(200, 190, 214, 0.62);
}

.sop-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c026ff;
    flex-shrink: 0;
    animation: sop-pulse 2s ease-in-out infinite;
}

.sop-bubble {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: 3;
    background: linear-gradient(135deg, rgba(192, 38, 255, 0.18), rgba(120, 80, 255, 0.12));
    border: 1px solid rgba(192, 38, 255, 0.4);
    border-radius: 18px 18px 18px 4px;
    padding: 14px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #f3eef8;
    max-width: 200px;
    animation: sop-floatslow 6s ease-in-out infinite;
}

/* Animations */
@keyframes sop-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes sop-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes sop-floatslow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
@keyframes sop-scan {
    0% { top: -2px; }
    100% { top: 100%; }
}
@keyframes sop-drift {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

/* Responsive */
@media (max-width: 900px) {
    .sop-inner {
        grid-template-columns: 1fr;
    }
    .sop-stage {
        order: -1;
        min-height: 360px;
    }
    .sop-badge {
        left: 10px;
    }
    .sop-bubble {
        right: 10px;
    }
    .sop-feats {
        flex-direction: column;
        gap: 16px;
    }
    .sop-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {
    /* Hero: imagen estática en lugar del video */
    .hero-bg-video {
        display: none;
    }
    .hero-bg-image {
        background-image: url('img/teen_gamer_headset.png');
        background-size: cover;
        background-position: center top;
    }

    /* Soporte: ocultar imagen de Micaela */
    .sop-stage {
        display: none;
    }

    /* Payment: ocultar tarjeta de crédito */
    .fp-visual {
        display: none;
    }

    /* Contacto: ocultar en mobile (canales + testimonios) */
    .ct {
        display: none;
    }

    /* Soporte: ocultar tags "Soporte de élite / Atención sin esperas" */
    .sop-cta-aside {
        display: none;
    }

    /* ── Plans section: mobile layout ────────────────────────── */

    /* Toggle pill: ancho completo */
    .plans-neon-toggle {
        width: 100%;
        max-width: 340px;
    }
    .plans-neon-toggle .toggle-btn {
        flex: 1 !important;
        padding: 13px 8px !important;
        border-radius: 28px !important;
        font-size: 14px !important;
        letter-spacing: .3px !important;
    }

    /* Eliminar perspectiva y efecto 3D */
    .plans-3d-perspective {
        perspective: none;
        perspective-origin: unset;
        padding-bottom: 0;
    }
    .plans-depth-fade {
        display: none;
    }
    .plans-3d-stage {
        transform: none !important;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        max-width: 100%;
    }

    /* Cards: ancho completo, sin hover 3D */
    .neon-plan-card {
        width: 100%;
    }
    .neon-plan-card:hover {
        transform: none;
        z-index: auto;
    }
    .neon-card-featured {
        padding-top: 34px;
    }

    /* Banner "¡EL MÁS ELEGIDO!" compacto */
    .neon-featured-banner {
        height: 34px;
        border-radius: 16px 16px 0 0;
        font-size: 11px;
    }

    /* Interior: grid en una sola columna — precio centrado debajo del nombre del plan */
    .neon-plan-inner {
        position: relative;
        display: grid;
        grid-template-areas:
            "title"
            "sub"
            "price"
            "label"
            "badges"
            "feats"
            "addon"
            "cta";
        grid-template-columns: 1fr;
        align-items: start;
        padding: 18px;
        gap: 0;
        height: auto;
    }
    .neon-plan-title {
        grid-area: title;
        font-size: 18px;
        white-space: nowrap;
        margin-bottom: 2px;
    }
    .neon-plan-sub {
        grid-area: sub;
        font-size: 13px;
        margin-bottom: 0;
    }
    .neon-price-row {
        grid-area: price;
        justify-content: center;
        margin-top: 8px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .neon-price {
        font-size: 28px;
    }
    .neon-period {
        font-size: 13px;
    }
    .neon-list-price {
        flex-basis: 100%;
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
        gap: 6px;
        margin-left: 0;
        padding-left: 0;
        margin-top: 2px;
    }
    .neon-includes-label {
        grid-area: label;
        margin-top: 14px;
    }
    .neon-badges {
        grid-area: badges;
        margin: 10px 0 12px;
        gap: 6px;
    }
    .neon-feats {
        grid-area: feats;
        gap: 7px;
        margin-bottom: 16px;
        flex-grow: 0;
    }
    .neon-feats li {
        font-size: 14px;
        gap: 8px;
    }
    .neon-dsports-addon {
        grid-area: addon;
    }
    .neon-cta {
        grid-area: cta;
        padding: 13px;
        font-size: 13px;
    }
    .neon-cta-featured,
    .neon-cta-magenta-featured {
        padding: 14px !important;
        font-size: 14px !important;
    }
}


body.emp { overflow-x: clip; }

.emp-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    overflow-x: clip;
    background: #04100b url('img/ciudad.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding-top: 80px;
    padding-bottom: 90px;
}
.emp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,16,11,.92) 0%, rgba(4,16,11,.76) 40%, rgba(4,16,11,.38) 100%);
    pointer-events: none;
    z-index: 0;
}
.emp-hero-body {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
}
.emp-hero-inner { max-width: 780px; }
.eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    color: #34e0a1;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.emp-h1 {
    font-family: 'Gilroy', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 6.5vw, 84px);
    line-height: 1.0;
    letter-spacing: -2.5px;
    color: #fff;
    margin: 0 0 18px;
}
.emp-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #c3d6cd;
    max-width: 480px;
    margin: 0;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.in {
    opacity: 1;
    transform: none;
}

#nosotros {
    position: relative;
    height: 180vh;
    background-color: #06170f;
}
.sticky-frame {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.nos-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 600px at 22% 45%, rgba(52,224,161,.20), transparent 60%),
        radial-gradient(760px 520px at 88% 30%, rgba(52,224,161,.12), transparent 62%),
        radial-gradient(700px 640px at 60% 108%, rgba(15,143,99,.22), transparent 60%),
        linear-gradient(180deg, #06170f, rgba(8,32,21,.2) 40%, #06140d);
}
.nos-grid {
    display: grid;
    grid-template-columns: .98fr 1.02fr;
    gap: 56px;
    align-items: center;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}
.nos-img { position: relative; height: 460px; }
.bub {
    position: absolute;
    transform: translateX(-50%);
    transform-origin: bottom center;
}
.bub-inner {
    position: relative;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0,0,0,.30);
}
.bub-tail {
    position: absolute;
    bottom: -7px;
    width: 18px;
    height: 18px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 3px;
}
.nos-copy { display: flex; flex-direction: column; }
.nos-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    color: #34e0a1;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.nos-h2 {
    font-family: 'Gilroy', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #e8f6ef;
    margin: 0 0 14px;
}
.nos-h2 span { color: #34e0a1; }
.nos-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    color: #9fb8ad;
    max-width: 520px;
    margin: 0 0 12px;
}
.nos-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nos-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #d4e6dd;
}
.nos-check {
    flex-shrink: 0;
    margin-top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(52,224,161,.14);
    border: 1px solid rgba(52,224,161,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34e0a1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
}
.nos-foot {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: #93aca1;
    max-width: 520px;
    margin: 0;
}

.faq-emp {
    position: relative;
    z-index: 3;
    padding: 80px 0 110px;
    background: #04100b url('img/ciudad.png') center center / cover no-repeat;
    background-attachment: fixed;
}
.faq-emp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4,16,11,.76);
    pointer-events: none;
    z-index: 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}
.faq-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    color: #34e0a1;
    text-align: left;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.faq-h2 {
    font-family: 'Gilroy', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -1.5px;
    color: #e8f6ef;
    text-align: left;
    margin: 0 0 36px;
}
.faq-card {
    border: 1px solid rgba(52,224,161,.14);
    border-radius: 20px;
    background: rgba(8,20,15,.4);
    overflow: hidden;
    transition: border-color .2s, background .2s;
    margin-bottom: 14px;
}
.faq-card.open {
    border-color: rgba(52,224,161,.45);
    background: rgba(12,34,26,.6);
}
.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #e8f6ef;
    font-family: 'Gilroy', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.faq-toggle-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(52,224,161,.12);
    color: #34e0a1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    transition: transform .25s ease, background .2s, color .2s;
    line-height: 1;
}
.faq-card.open .faq-toggle-icon {
    background: #34e0a1;
    color: #04100b;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-card.open .faq-answer { max-height: 500px; }
.faq-answer-body {
    padding: 0 28px 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    color: #9fb8ad;
}
.faq-answer-body a { color: #34e0a1; }

.ct-section {
    position: relative;
    z-index: 3;
    padding: 0 48px 120px;
    background: #04100b url('img/ciudad.png') center center / cover no-repeat;
    background-attachment: fixed;
}
.ct-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4,16,11,.70);
    pointer-events: none;
    z-index: 0;
}
.ct-panel {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    border: 1px solid rgba(52,224,161,.22);
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(12,34,26,.7), rgba(8,20,15,.6));
}
.ct-cols { display: grid; grid-template-columns: 1fr 1fr; }
.ct-left {
    padding: 60px 52px;
    border-right: 1px solid rgba(52,224,161,.14);
}
.ct-right {
    padding: 60px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
}
.ct-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    color: #34e0a1;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.ct-h2 {
    font-family: 'Gilroy', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 3.5vw, 48px);
    letter-spacing: -1.5px;
    line-height: 1.02;
    color: #e8f6ef;
    margin: 0 0 18px;
}
.ct-h2 span { color: #34e0a1; }
.ct-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #9fb8ad;
    max-width: 380px;
    margin: 0 0 40px;
}
.ct-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #7d938b;
    margin-bottom: 6px;
}
.ct-phone {
    display: block;
    font-family: 'Gilroy', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #34e0a1;
    text-decoration: none;
    letter-spacing: -.5px;
}
.ct-email {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #e8f6ef;
    text-decoration: none;
    transition: color .2s;
}
.ct-email:hover { color: #34e0a1; }
.ct-cta-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #c3d6cd;
    max-width: 360px;
    margin: 0;
}
.btn-ejecutivo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #34e0a1;
    color: #04100b;
    text-decoration: none;
    border-radius: 999px;
    padding: 18px 40px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 12px 30px rgba(52,224,161,.28);
    transition: transform .18s ease, box-shadow .18s ease;
}
.btn-ejecutivo:hover {
    transform: translateY(-2px);
    color: #04100b;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(52,224,161,.4);
}

@media (max-width: 900px) {
    .emp-hero,
    .faq-emp,
    .ct-section { background-attachment: scroll; }
    .emp-hero-body { padding: 0 24px; }
    .nos-grid { grid-template-columns: 1fr; padding: 0 24px; }
    .nos-img { display: none; }
    #nosotros { height: auto; }
    .sticky-frame { position: relative; height: auto; min-height: auto; padding: 60px 0; overflow: visible; }
    .faq-emp { padding: 60px 0 80px; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .ct-section { padding: 0 24px 80px; }
    .ct-panel { max-width: none; }
    .ct-cols { grid-template-columns: 1fr; }
    .ct-left { border-right: none; border-bottom: 1px solid rgba(52,224,161,.14); padding: 40px 32px; }
    .ct-right { padding: 40px 32px; }
}

