:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --accent: #f97316;
    --brand-red: #b30f1f;
    --brand-red-dark: #7f0c17;
    --brand-gold: #f2c230;
    --brand-charcoal: #14171c;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header y Navegación */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: 100vw;
}

.id-construction {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            padding: 10px;
            border-radius: 8px;
        }
        .id-prefix {
            font-weight: bold;
            color: #1e3c72;
            margin-right: 5px;
        }
        .id-suffix {
            font-weight: bold;
            color: #1e3c72;
            margin-left: 5px;
            margin-bottom: 0px !important;
        }


.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.scrolled .menu-links a {
    color: var(--dark);
}

.scrolled .logo img {
    height: 50px;
}

.scrolled .logo .logo_nav--club {
    height: 60px;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4.2% 12px 1.2%;
    max-width: 100%;
    position: relative;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.logo-main-link {
    display: inline-flex;
    align-items: center;
}

.logo .logo_nav--club {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

.menu-links {
    display: flex;
    list-style: none;
    gap: 22px;
}

.menu-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-links a:hover {
    color: var(--accent);
}

.menu-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.menu-links a:hover::after {
    width: 100%;
}

.menu-links .btn-mi-ctnet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff7e6;
    background: linear-gradient(135deg, #6f0914 0%, var(--brand-red-dark) 38%, var(--brand-red) 72%, #d53345 100%);
    border: 1px solid rgba(242, 194, 48, 0.7);
    box-shadow: 0 10px 24px rgba(127, 12, 23, 0.36), 0 0 0 1px rgba(242, 194, 48, 0.2) inset;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.menu-links .btn-mi-ctnet i {
    font-size: 1rem;
}

.menu-links .btn-mi-ctnet::after {
    display: none;
}

.menu-links .btn-mi-ctnet::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.45) 48%, transparent 80%);
    transform: translateX(-140%);
    transition: transform 0.65s ease;
    z-index: -1;
}

.menu-links .btn-mi-ctnet:hover {
    color: #fff7e6;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 30px rgba(127, 12, 23, 0.42), 0 0 12px rgba(242, 194, 48, 0.24);
    filter: none;
}

.menu-links .btn-mi-ctnet:hover::before {
    transform: translateX(125%);
}

.scrolled .menu-links .btn-mi-ctnet {
    color: var(--light);
}

.dropdown_list {
    position: relative;
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(204, 204, 204);
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown_list:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-list li {
    padding: 0;
}

.dropdown-menu-list a {
    color: var(--dark) !important;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}

.dropdown-menu-list a:hover {
    background: var(--light-gray);
    color: var(--primary) !important;
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    color: rgb(204, 204, 204);
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger-menu .bi-list {
    display: block;
}

.hamburger-menu .bi-x {
    display: none;
}

.hamburger-menu.active .bi-list {
    display: none;
}

.hamburger-menu.active .bi-x {
    display: block;
    z-index: 1002;
    color: black
}

.scrolled .hamburger-menu {
    color: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#background-video-map {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, rgba(20, 23, 28, 0.48), rgba(127, 12, 23, 0.38), rgba(179, 15, 31, 0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6f0914 0%, #8c0b18 36%, #b30f1f 74%, #d53345 100%);
    color: #fff7e6;
    border: 1px solid rgba(242, 194, 48, 0.7);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 12px 26px rgba(127, 12, 23, 0.34), 0 0 0 1px rgba(242, 194, 48, 0.22) inset;
    transition: all 0.3s ease;
    animation: fadeIn 1.5s ease;
}

.cta-button:hover {
    color: #fff7e6;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(127, 12, 23, 0.44), 0 0 12px rgba(242, 194, 48, 0.24);
}

.hero-cta-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-cta-stack .cta-button {
    min-width: 240px;
}

.hero-canjea-ad {
    position: absolute;
    inset: auto auto 92px clamp(16px, 4vw, 54px);
    transform: none;
    width: clamp(220px, 22vw, 320px);
    z-index: 900;
    border-radius: 20px;
    border: 1px solid rgba(242, 194, 48, 0.5);
    background: linear-gradient(155deg, rgba(13, 17, 25, 0.84), rgba(127, 12, 23, 0.72));
    backdrop-filter: blur(8px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(242, 194, 48, 0.16) inset;
    padding: 12px;
    color: #f8fafc;
    animation: fadeInUp 0.85s ease;
    max-height: min(78svh, 620px);
    overflow: hidden;
}

@media (min-width: 1025px) {
    .hero-canjea-ad {
        inset: auto auto 64px clamp(18px, 3.5vw, 58px);
        max-height: none;
        overflow: visible;
    }

    .hero-canjea-ad__video {
        max-height: min(56svh, 540px);
    }
}

.hero-canjea-ad__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hero-canjea-ad__actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-canjea-ad__audio,
.hero-canjea-ad__toggle {
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(242, 194, 48, 0.5);
    border-radius: 999px;
    background: rgba(20, 23, 28, 0.45);
    color: #fde68a;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    cursor: pointer;
}

.hero-canjea-ad__audio {
    display: inline-flex;
}

.hero-canjea-ad__audio.is-on {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(16, 185, 129, 0.7);
    color: #d1fae5;
}

.hero-canjea-ad__toggle {
    display: none;
    align-items: center;
}

.hero-canjea-ad__toggle i {
    transition: transform 0.25s ease;
}

.hero-canjea-ad.is-collapsed .hero-canjea-ad__toggle i {
    transform: rotate(-90deg);
}

.hero-canjea-ad__body {
    margin-top: 4px;
}

.hero-canjea-ad__badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(242, 194, 48, 0.65);
    color: #fef3c7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.69rem;
}

.hero-canjea-ad h3 {
    margin: 8px 0 4px;
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    color: #fff;
}

.hero-canjea-ad p {
    margin: 0;
    color: rgba(248, 250, 252, 0.9);
    font-size: 0.82rem;
    line-height: 1.42;
}

.hero-canjea-ad__video-shell {
    margin-top: 10px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(242, 194, 48, 0.38);
    background: #000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.hero-canjea-ad__video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    max-height: min(54svh, 500px);
}

.hero-canjea-ad__cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    text-decoration: none;
    padding: 7px 12px;
    background: linear-gradient(135deg, #f2c230 0%, #f59e0b 100%);
    color: #3f1c00;
    font-size: 0.83rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-canjea-ad__cta:hover {
    color: #3f1c00;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.35);
}

.cta-button-download {
    background: linear-gradient(135deg, #0f5a2f 0%, #15803d 45%, #16a34a 100%);
    border-color: rgba(209, 250, 229, 0.7);
    box-shadow: 0 12px 24px rgba(12, 102, 51, 0.35), 0 0 0 1px rgba(209, 250, 229, 0.28) inset;
}

.cta-button-download:hover {
    box-shadow: 0 16px 30px rgba(12, 102, 51, 0.45), 0 0 12px rgba(167, 243, 208, 0.26);
}

.scroll-down {
    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.hero-club-ribbon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(127, 12, 23, 0.9) 0%, rgba(179, 15, 31, 0.88) 48%, rgba(20, 23, 28, 0.92) 100%);
    border-top: 1px solid rgba(242, 194, 48, 0.7);
    border-bottom: 1px solid rgba(242, 194, 48, 0.45);
    overflow: hidden;
    z-index: 3;
    backdrop-filter: blur(6px);
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.2);
}

.hero-club-ribbon__track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    min-width: 200%;
    padding: 10px 0;
    color: #fef6d8;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: heroRibbonScroll 28s linear infinite;
}

.hero-club-ribbon__logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(242, 194, 48, 0.75);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
}

.hero-club-ribbon__track span::before {
    content: '★';
    color: #f2c230;
    margin-right: 10px;
}

@keyframes heroRibbonScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sección de Planes Fibra Óptica */
.club-promos {
    padding: 100px 5%;
    background: linear-gradient(160deg, #a80000 0%, #c10000 55%, #8b0000 100%);
}

.club-promos.reveal-ready {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: saturate(0.9);
}

.club-promos.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
    transition: opacity 0.82s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.82s cubic-bezier(0.22, 0.61, 0.36, 1),
                filter 0.75s ease;
}

.club-promos.reveal-ready .section-title,
.club-promos.reveal-ready .club-promos-container {
    opacity: 0;
    transform: translateY(22px);
}

.club-promos.revealed .section-title,
.club-promos.revealed .club-promos-container {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.club-promos.revealed .club-promos-container {
    transition-delay: 0.12s;
}

.club-promos .section-title h2,
.club-promos .section-title p {
    color: white;
}

.club-promos-tip {
    margin-top: 8px;
    font-size: 0.95rem;
    opacity: 0.86;
}

.club-promos .section-title h2::after {
    background: #ffd700;
}

.club-promos-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.club-carrusel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.club-carrusel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.club-carrusel-item {
    min-width: 33.3333%;
    flex: 0 0 auto;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    cursor: zoom-in;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.45s ease,
                border-color 0.4s ease,
                filter 0.45s ease;
    position: relative;
}

.club-carrusel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.25) 46%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.club-carrusel-item:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(255, 215, 0, 0.62);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.33), 0 0 0 1px rgba(255, 215, 0, 0.2) inset;
    filter: saturate(1.06);
}

.club-carrusel-item:hover::after {
    transform: translateX(120%);
}

.club-carrusel-item img {
    display: block;
    width: 100%;
    max-height: min(62vh, 560px);
    height: auto;
    object-fit: contain;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.45s ease;
}

.club-carrusel-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.1) contrast(1.03);
}

.club-carrusel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
    pointer-events: none;
}

.club-carrusel-control {
    pointer-events: all;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 238, 196, 0.92));
    color: #8f0a18;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 215, 0, 0.24) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.club-carrusel-control:hover {
    transform: translateY(-1px) scale(1.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3), 0 0 14px rgba(255, 215, 0, 0.34);
    filter: saturate(1.08);
}

.club-carrusel-control:active {
    transform: translateY(0) scale(0.98);
}

.club-carrusel-control:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.club-carrusel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.club-carrusel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.club-carrusel-dot.active {
    background: #ffd700;
    transform: scale(1.18);
}

.club-promos-whatsapp {
    margin: 24px auto 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #07270f;
    background: #25d366;
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.club-promos-whatsapp::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.52) 48%, transparent 78%);
    transform: translateX(-135%);
    transition: transform 0.7s ease;
    z-index: -1;
}

.club-promos-whatsapp:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.29), 0 0 14px rgba(37, 211, 102, 0.3);
    color: #07270f;
}

.club-promos-whatsapp:hover::before {
    transform: translateX(125%);
}

.club-promos-whatsapp:active {
    transform: translateY(0) scale(0.99);
}

.club-promos-whatsapp:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.club-promos-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.club-promos-info {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #fff7e6;
    background: linear-gradient(135deg, #111827 0%, #334155 100%);
    border: 1px solid rgba(242, 194, 48, 0.48);
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.club-promos-info::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.45) 48%, transparent 80%);
    transform: translateX(-135%);
    transition: transform 0.7s ease;
    z-index: -1;
}

.club-promos-info:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32), 0 0 12px rgba(242, 194, 48, 0.24);
    color: #fff7e6;
}

.club-promos-info:hover::before {
    transform: translateX(125%);
}

.club-promos-info:active {
    transform: translateY(0) scale(0.99);
}

.club-promos-info:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.club-promos-actions .club-promos-whatsapp {
    margin: 0;
}

.club-flyer-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(5, 8, 12, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
}

.club-flyer-modal.active {
    display: flex;
}

.club-flyer-modal__img {
    width: auto;
    max-width: min(100%, 900px);
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.club-flyer-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .club-carrusel-item {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .club-promos {
        padding: 80px 5%;
    }

    .club-carrusel-control {
        width: 40px;
        height: 40px;
    }

    .club-carrusel-item img {
        max-height: min(72vh, 640px);
    }
}

@media (max-width: 480px) {
    .club-carrusel-item {
        min-width: 100%;
    }

    .club-carrusel-item:hover {
        transform: translateY(-4px) scale(1.008);
    }

    .club-carrusel-controls {
        padding: 0 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .club-promos,
    .club-promos .section-title,
    .club-promos .club-promos-container,
    .club-carrusel-item,
    .club-carrusel-item::after,
    .club-carrusel-item img {
        transition: none !important;
        animation: none !important;
    }

    .club-promos.reveal-ready,
    .club-promos.reveal-ready .section-title,
    .club-promos.reveal-ready .club-promos-container {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.planes-section {
    padding: 100px 5%;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.planes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan.popular::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 0 0 15px;
}

.plan-header {
    padding: 30px 20px;
    text-align: center;
    background: var(--primary);
    color: white;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
}

.plan-body {
    padding: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--secondary);
    margin-right: 10px;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: var(--primary-dark);
}

/* Sección de Planes Antenas Inalámbricas */
.planes-inalambricos {
    padding: 100px 5%;
    background: white;
}

.plan.inalambrico .plan-header {
    background: var(--secondary);
}

.plan.inalambrico .plan-button {
    background: var(--secondary);
}

.plan.inalambrico .plan-button:hover {
    background: #0da271;
}

/* Sección de Cobertura */
.zonas-cobertura {
    padding: 100px 5%;
    background: var(--light);
}

.cobertura-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cobertura-map {
    position: relative;
    height: 400px;
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cobertura-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cobertura-content p {
    color: var(--gray);
    margin-bottom: 30px;
}

.zona-list {
    list-style: none;
}

.zona-item {
    margin-bottom: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zona-item:hover {
    background: var(--primary);
    color: white;
}

.zona-item i {
    margin-right: 10px;
    color: var(--primary);
}

.zona-item:hover i {
    color: white;
}

.sectores {
    display: none;
    margin-top: 10px;
    padding-left: 30px;
}

.zona-item.active .sectores {
    display: block;
}

.consulta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consulta-btn:hover {
    background: #0da271;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sección de Galería */
.galeria {
    padding: 100px 5%;
    background: white;
}

.galeria-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carrusel {
    position: relative;
    width: 100%;
    height: 400px;
}

.carrusel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 0;
    margin: 0;
}

.carrusel-item {
    /* Show multiple items: default to 3 per view on large screens */
    min-width: 33.3333%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 auto;
    background: transparent;
}

.carrusel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Ensure the main carrusel viewport clips overflow */
.carrusel { overflow: hidden; }

/* Responsive carousel: 2 items for tablets, 1 item for small phones */
@media (max-width: 1024px) {
    .carrusel-item { min-width: 50%; }
}

@media (max-width: 480px) {
    .carrusel-item { min-width: 100%; }
}

.carrusel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    border-radius: 0 0 10px 10px;
}

.carrusel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.carrusel-control {
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrusel-control:hover {
    background: white;
}

.carrusel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carrusel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrusel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Sección de Contacto */
.contacto {
    padding: 100px 5%;
    background: var(--light);
}

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contacto-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contacto-details {
    list-style: none;
    margin-bottom: 30px;
}

.contacto-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contacto-details li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.redes-sociales {
    display: flex;
    gap: 15px;
}

.redes-sociales a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.redes-sociales a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contacto-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.contact-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.contacto-details li div {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 5% 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-text {
    margin-bottom: 30px;
    color: var(--light-gray);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Modal */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

.titulo_r {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn_save {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn_save:hover {
    background: var(--primary-dark);
}

.menu-links #appClienteDownloadEntry {
    color: #fef6d8;
    font-weight: 600;
}

.menu-links #appClienteDownloadEntry:hover {
    color: var(--brand-gold);
}

.app-otp-modal {
    border-radius: 16px;
}

.app-otp-modal__header {
    background: linear-gradient(135deg, #7f0c17, #b30f1f);
    color: #fff;
}

.app-otp-modal__body {
    padding: 24px;
}

.app-otp-subtitle {
    font-size: 0.93rem;
    color: #4b5563;
}

.app-apk-meta {
    margin-top: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    padding: 12px;
}

.app-apk-meta__title {
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.app-apk-meta__row {
    font-size: 0.9rem;
    color: #475569;
}

.app-apk-meta--success {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.app-otp-methods {
    display: flex;
    gap: 10px;
}

.app-otp-method {
    flex: 1;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
    color: #334155;
    transition: all 0.25s ease;
}

.app-otp-method.is-active {
    border-color: rgba(179, 15, 31, 0.7);
    background: rgba(179, 15, 31, 0.08);
    color: #7f0c17;
}

.app-otp-code {
    text-align: center;
    letter-spacing: 0.4em;
    font-size: 1.25rem;
    font-weight: 700;
}

.app-otp-actions {
    display: flex;
    gap: 10px;
}

.app-otp-actions .btn {
    flex: 1;
}

.app-otp-success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: #14532d;
}

.app-otp-success i {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .app-otp-modal__body {
        padding: 18px;
    }

    .app-otp-actions {
        flex-direction: column;
    }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .menu-overlay {
        display: none;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .cobertura-container,
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-canjea-ad {
        inset: auto auto 102px 18px;
        left: 18px;
        right: auto;
        width: min(290px, 36vw);
        bottom: 102px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100svh;
    }

    .hero-content {
        transform: translateY(-34px);
    }

    #background-video {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
    }

    .hero-club-ribbon {
        bottom: max(1px, env(safe-area-inset-bottom));
    }

    .menu-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 300px;
        background: rgb(204, 204, 204);
        flex-direction: column;
        padding: 100px 25px 30px;
        transition: all 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .menu-links.active {
        right: 0;
    }

    .menu-links a {
        color: var(--dark);
        font-size: 18px;
        padding: 15px 0;
        display: block;
    }

    .menu-links .btn-mi-ctnet {
        display: inline-flex;
        justify-content: center;
        padding: 12px 20px;
        margin-top: 8px;
        font-size: 0.95rem;
    }

    .dropdown-menu-list {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        margin: 10px 0;
        display: none;
    }

    .dropdown_list.active .dropdown-menu-list {
        display: block;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1001;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .scrolled .menu-links {
        background: rgb(204, 204, 204);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-canjea-ad {
        position: absolute;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 160px;
        transform: translateX(-50%);
        width: min(92vw, 330px);
        max-height: calc(100svh - 205px);
        overflow: auto;
        z-index: 4;
    }

    .hero-canjea-ad__audio {
        padding: 4px 8px;
    }

    .hero-canjea-ad__toggle {
        display: inline-flex;
    }

    .hero-canjea-ad.is-collapsed .hero-canjea-ad__body {
        display: none;
    }

    .hero-canjea-ad p {
        font-size: 0.8rem;
    }

    .hero-canjea-ad__video {
        max-height: 40vh;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .plan-header h3 {
        font-size: 1.3rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .carrusel-control {
        width: 40px;
        height: 40px;
    }

    .hero-club-ribbon__track {
        gap: 18px;
        font-size: 0.72rem;
        letter-spacing: 0.03em;
        padding: 8px 0;
    }

    .hero-club-ribbon__logo {
        width: 30px;
        height: 30px;
    }

    .scroll-down {
        bottom: 50px;
    }
}

@media (max-width: 480px) {
    .menu {
        padding: 10px 15px 10px 8px;
        position: relative;
    }
    
    .hamburger-menu {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        width: 40px;
        height: 40px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo {
        gap: 1px;
    }

    .logo .logo_nav--club {
        height: 47px;
    }

    .menu-links {
        width: 85%;
        padding: 100px 25px 30px;
    }
    
    header {
        width: 100vw;
        left: 0;
        right: 0;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        transform: translateY(-40px);
    }

    .hero-canjea-ad {
        bottom: 146px;
        padding: 10px;
        max-height: calc(100svh - 178px);
    }

    .hero-canjea-ad__video {
        max-height: 46vh;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .planes-container {
        grid-template-columns: 1fr;
    }
}

/* Para pantallas extremadamente pequeñas */
@media (max-width: 360px) {
    .menu {
        padding: 10px 10px 10px 6px;
    }
    
    .hamburger-menu {
        right: 10px;
        width: 36px;
        height: 36px;
    }
    
    .logo img {
        height: 40px;
    }

    .logo {
        gap: 1px;
    }

    .logo .logo_nav--club {
        height: 42px;
    }
    
    .menu-links {
        width: 90%;
        padding: 90px 20px 25px;
    }
}