:root {
    --section-spacing: 6rem;
    --mobile-section-spacing: 3rem;
    --primary-blue: #41b6e6;
    --secondary-orange: #FF5C39;
}

/* ============================================================================
   ESTILOS BASE Y RESET
   ============================================================================ */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(65, 182, 230, 0.7) rgba(15, 23, 42, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #00205b;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
}

/* ============================================================================
   SCROLLBAR ESTILOS
   ============================================================================ */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 5px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgba(65, 182, 230, 0.7), rgba(107, 201, 255, 0.5));
    border-radius: 5px;
    border: 1px solid rgba(65, 182, 230, 0.3);
    box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.2), 0 0 5px rgba(65, 182, 230, 0.3);
    animation: scrollbarPulse 4s ease-in-out infinite;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, rgba(65, 182, 230, 0.9), rgba(107, 201, 255, 0.7));
    box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.3), 0 0 8px rgba(65, 182, 230, 0.5);
}

body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(to bottom, rgba(65, 182, 230, 1), rgba(107, 201, 255, 0.9));
}

.main-content-container::-webkit-scrollbar {
    width: 8px;
}

.main-content-container::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 4px;
}

.main-content-container::-webkit-scrollbar-thumb {
    background: rgba(65, 182, 230, 0.6);
    border-radius: 4px;
    border: 1px solid rgba(65, 182, 230, 0.2);
}

.main-content-container::-webkit-scrollbar-thumb:hover {
    background: rgba(65, 182, 230, 0.8);
}

@keyframes scrollbarPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* ============================================================================
   FONDOS ANIMADOS Y EFECTOS VISUALES
   ============================================================================ */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.interactive-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
}

.wave-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0.5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

body.in-horizontal-section .wave-bg {
    opacity: 1;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    transform: translate(-50%, -50%);
    will-change: transform;
    z-index: 0;
}

.gradient-circle.orange-circle {
    background: radial-gradient(circle, rgba(255,92,57,0.7) 0%, rgba(255,92,57,0) 70%) !important;
}

/* ============================================================================
   HEADER Y NAVEGACIÓN
   ============================================================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    transform: translateY(0);
    opacity: 1;
    background-color: transparent;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 32, 91, 0);
    backdrop-filter: blur(0px);
    z-index: -1;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
}

.main-header.scrolled::before {
    background-color: rgba(0, 32, 91, 0.90);
    backdrop-filter: blur(10px);
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.main-header .logo,
.main-header .nav-link,
.main-header .dropdown-trigger {
    transition: all 0.3s ease;
}

.main-header.scrolled .nav-link {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.main-header.scrolled .nav-link:hover {
    color: var(--primary-blue);
}

.main-header.scrolled .logo {
    filter: brightness(1.2);
}

.main-header.scrolled .dropdown-trigger {
    color: white;
}

.main-header.scrolled .dropdown-trigger:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.main-header.scrolled .dropdown-content {
    background-color: rgba(0, 32, 91, 0.90);
    border-radius: 0 0 0 20px;
    backdrop-filter: blur(10px);
}

.logo {
    height: 20px;
    width: auto;
}

.logo-container {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container:active {
    transform: scale(0.95);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 32, 91, 0.90);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav-link {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ============================================================================
   DROPDOWN MENÚ
   ============================================================================ */
.dropdown-menu-container {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-trigger:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 18.5px);
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    min-width: 200px;
    border: 0px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 101;
    overflow: hidden;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-link {
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    color: var(--primary-blue);
    padding-left: 1.75rem;
}

/* ============================================================================
   SECCIONES PRINCIPALES
   ============================================================================ */
.main-section {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 30;
}

.vertical-scroll-section, .horizontal-panel {
    height: 100vh;
    width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 30;
}

.horizontal-scroll-container {
    display: flex;
    width: 300vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 30;
}

.dynamic-section {
    margin-bottom: var(--section-spacing);
}

.coverage-section {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 35;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    margin-bottom: var(--section-spacing);
}

#payment-section {
    transition: min-height 0.3s ease;
    position: relative;
    z-index: 35;
}

#multiverse-section {
    position: relative;
    z-index: 35;
}

.panel .content {
    opacity: 1;
    position: relative;
    z-index: 40;
    background-color: rgba(15,23,42,0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================================
   TIPOGRAFÍA Y TÍTULOS
   ============================================================================ */
.obercom-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 0;
    white-space: nowrap;
    display: inline-block;
}

.custom-text {
    font-size: 5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 45;
}

.coverage-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 0.125rem;
    padding-top: 0.0625rem;
    color: white;
    position: relative;
    z-index: 45;
}

.horizontal-timeline-title {
    font-size: 5rem;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: 45;
}

.rotating-text-container {
    display: inline-block;
    position: relative;
}

.static-part, .dynamic-part {
    display: inline-block;
}

.static-part {
    margin-right: 0.5rem;
}

.dynamic-part {
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* ============================================================================
   BOTONES
   ============================================================================ */
.btn {
    color: white;
    padding: 0.4rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    margin-top: -0.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 50;
}

.btn:hover {
    transform: translateY(-2px);
}

.contact-btn {
    background-color: var(--primary-blue);
    color: #00205B;
}

.contact-btn:hover {
    box-shadow: 0 4px 15px rgba(107,201,255,0.4);
}

.grilla-btn {
    background-color: #FF5C39;
}

.grilla-btn:hover {
    box-shadow: 0 4px 15px rgba(255,92,57,0.4);
}

.jugar-btn {
    background-color: var(--primary-blue);
    color: #00205B;
}

.jugar-btn:hover {
    box-shadow: 0 4px 15px rgba(107,201,255,0.4);
}

/* ============================================================================
   CAROUSEL
   ============================================================================ */
.carousel-container {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    perspective: 1000px;
    position: relative;
    z-index: 40;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel__list {
    display: flex;
    list-style: none;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 40;
}

.carousel__item {
    position: absolute;
    width: 250px;
    height: 350px;
    transition: all 0.5s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

.carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    outline: none;
}

.carousel__item[data-pos="0"] {
    transform: translateZ(50px);
    z-index: 5;
    width: 280px;
    height: 380px;
}

.carousel__item[data-pos="-1"], .carousel__item[data-pos="1"] {
    opacity: 0.8;
    filter: brightness(0.9);
    transform: translateZ(0);
}

.carousel__item[data-pos="-1"] {
    transform: translateX(-80%) scale(0.85) translateZ(0);
    z-index: 4;
}

.carousel__item[data-pos="1"] {
    transform: translateX(80%) scale(0.85) translateZ(0);
    z-index: 4;
}

.carousel__item[data-pos="-2"], .carousel__item[data-pos="2"] {
    opacity: 0.6;
    filter: brightness(0.8);
    transform: translateZ(-50px);
}

.carousel__item[data-pos="-2"] {
    transform: translateX(-140%) scale(0.7) translateZ(-50px);
    z-index: 3;
}

.carousel__item[data-pos="2"] {
    transform: translateX(140%) scale(0.7) translateZ(-50px);
    z-index: 3;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.carousel-nav button {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav button.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* ============================================================================
   SECCIÓN TV
   ============================================================================ */
.channel-logo {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    position: relative;
    z-index: 45;
}

/* ============================================================================
   SECCIÓN COBERTURA
   ============================================================================ */
.map-coverage-container {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    border: 2px solid #c9e4f1;
    box-shadow: 0 0 8px var(--primary-blue), 0 0 16px var(--primary-blue), inset 0 0 8px var(--primary-blue), inset 0 0 16px var(--primary-blue);
    transition: box-shadow 0.3s ease-in-out;
    z-index: 40;
}

#map-coverage {
    height: 100%;
    width: 100%;
    border-radius: 16px;
    pointer-events: none;
    position: relative;
    z-index: 41;
}

.coverage-content-container {
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    z-index: 40;
}

.coverage-custom-select-container {
    position: relative;
    margin-bottom: 0.5rem;
    width: 100%;
}

.coverage-custom-select-container.open {
    margin-bottom: 0;
}

.coverage-custom-select-container.open .coverage-select-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}

.coverage-custom-select-container.open .coverage-select-trigger:hover {
    border-bottom-color: transparent;
}

.coverage-select-trigger {
    background: rgba(65, 182, 230, 0.2);
    border: 1px solid rgba(65, 182, 230, 0.5);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    width: 100%;
    z-index: 10;
    position: relative;
}

.coverage-select-trigger:hover {
    background: rgba(65, 182, 230, 0.3);
}

.coverage-select-options {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(65, 182, 230, 0.5);
    border-top: 0;
    border-radius: 0 0 0.75rem 0.75rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 5;
    margin-top: -1px;
}

.coverage-select-options.show {
    max-height: none;
    opacity: 1;
    overflow-y: visible;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.coverage-select-options::-webkit-scrollbar {
    width: 5px;
}

.coverage-select-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.coverage-select-options::-webkit-scrollbar-thumb {
    background: rgba(107, 201, 255, 0.5);
    border-radius: 3px;
}

.coverage-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 201, 255, 0.7);
}

.coverage-select-option {
    padding: 0.875rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.coverage-select-option:last-child {
    border-bottom: none;
}

.coverage-select-option:hover {
    background: rgba(65, 182, 230, 0.2);
}

.coverage-select-option.active {
    background: rgba(65, 182, 230, 0.3);
    font-weight: 600;
}

.coverage-select-option .count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.coverage-filter-buttons-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    width: 100%;
}

.coverage-filter-button {
    flex: 1;
    background: var(--primary-blue);
    color: #00205B;
    padding: 0.75rem 0.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    outline: none;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.coverage-filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107,201,255,0.4);
}

.coverage-filter-button.active {
    background-color: var(--primary-blue);
    color: #00205B;
}

.coverage-filter-button:not(.active) {
    background-color: rgba(65, 182, 230, 0.2);
    color: white;
    border: 1px solid rgba(65, 182, 230, 0.5);
}

.coverage-filter-button:not(.active):hover {
    background: rgba(65, 182, 230, 0.3);
}

.coverage-button-counter {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    background: white;
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 9999px;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 2px solid #00205B;
}

.coverage-location-counter {
    background: rgba(65, 182, 230, 0.2);
    border: 1px solid rgba(65, 182, 230, 0.5);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.coverage-group-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.coverage-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

.coverage-content-header h2 {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
}

.coverage-location-item-card {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
    height: fit-content;
    min-height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
}

.coverage-location-item-card:hover {
    background: rgba(65, 182, 230, 0.1);
    transform: translateX(3px);
}

.coverage-location-item-card:last-child {
    border-bottom: none;
}

.coverage-location-item-card .flex-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.coverage-location-item-card .text-gray-200 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.375rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.coverage-locations-container {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.coverage-locations-container::-webkit-scrollbar {
    width: 5px;
}

.coverage-locations-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.coverage-locations-container::-webkit-scrollbar-thumb {
    background: rgba(107, 201, 255, 0.5);
    border-radius: 3px;
}

.coverage-locations-container::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 201, 255, 0.7);
}

.coverage-locations-grid {
    display: grid;
    gap: 0.375rem;
}

/* ============================================================================
   SECCIÓN "¿NO ENCONTRÁS TU BARRIO?"
   ============================================================================ */
.add-neighborhood-section {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    padding: 0.5rem 0;
    position: relative;
    z-index: 50;
    opacity: 1;
}

.add-neighborhood-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.3rem;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 51;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.add-neighborhood-btn {
    background-color: var(--primary-blue);
    color: #00205B;
    padding: 0.4rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    line-height: 1.2;
    margin-top: -0.5rem;
    position: relative;
    z-index: 51;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.add-neighborhood-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107,201,255,0.6);
}

/* ============================================================================
   SECCIÓN PUNTOS DE PAGO
   ============================================================================ */
.payment-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2rem;
}

.select-container {
    transition: min-height 0.3s ease;
}

#payment-buttons {
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 40;
}

#select-options {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    position: relative;
}

#select-options.show {
    max-height: 192px;
    opacity: 1;
    overflow-y: auto;
}

#select-options::-webkit-scrollbar {
    width: 6px;
}

#select-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

#select-options::-webkit-scrollbar-thumb {
    background: rgba(107, 201, 255, 0.5);
    border-radius: 3px;
}

#select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 201, 255, 0.7);
}

#location-items-container {
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

#location-items-container.show {
    max-height: 1000px;
    opacity: 1;
}

#location-items {
    overflow-y: auto;
    max-height: 250px;
}

#location-items::-webkit-scrollbar {
    width: 6px;
}

#location-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

#location-items::-webkit-scrollbar-thumb {
    background: rgba(107, 201, 255, 0.5);
    border-radius: 3px;
}

#location-items::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 201, 255, 0.7);
}

.points-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: rgba(30, 41, 59, 0.95);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    z-index: 15;
    text-align: center;
}

/* ============================================================================
   SECCIÓN IFRAME (PUNTOS DE PAGO)
   ============================================================================ */
.iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 40;
}

.iframe-container iframe {
    border-radius: 20px;
    position: relative;
    z-index: 41;
    border: 3px solid #c9e4f1;
    box-shadow: 0 0 8px var(--primary-blue), 0 0 16px var(--primary-blue), inset 0 0 8px var(--primary-blue), inset 0 0 16px var(--primary-blue);
    transition: box-shadow 0.3s ease-in-out;
}

.aro-neon {
    position: absolute;
    top: -15px;
    left: -20px;
    right: -20px;
    bottom: -25px;
    background-image: url('../images/aro_neon.png');
    background-size: cover;
    background-position: center;
    z-index: 60;
    pointer-events: none;
    display: none;
}

.astro-autito {
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 120px;
    height: auto;
    z-index: 61;
    pointer-events: none;
    display: none;
}

/* ============================================================================
   SECCIÓN GRILLA
   ============================================================================ */
.grilla-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    position: relative;
    z-index: 40;
}

.grilla-horizontal {
    display: block;
}

.grilla-vertical {
    display: none;
}

/* ============================================================================
   SECCIÓN HISTORIA (TIMELINE)
   ============================================================================ */
.horizontal-timeline-wrapper {
    height: 100vh;
    position: relative;
    color: #fff;
    z-index: 30;
}

.horizontal-timeline-section {
    display: flex;
    height: 100vh;
    position: sticky;
    top: 0;
    align-items: center;
    gap: 140px;
    padding: 40px;
    will-change: transform;
}

.timeline-card {
    width: 300px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
    text-align: left;
    position: relative;
    z-index: 40;
}

.timeline-card:first-child {
    margin-left: 280px;
}

.timeline-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    transition: all 0.6s cubic-bezier(.25,.8,.25,1);
    animation: float 10s ease-in-out infinite;
    border: 2px solid white;
    box-shadow: 0 0 5px var(--primary-blue), 0 0 10px var(--primary-blue), 0 0 15px var(--primary-blue), inset 0 0 5px var(--primary-blue), inset 0 0 10px var(--primary-blue);
    position: relative;
    z-index: 41;
}

.timeline-card:nth-child(1) img {
    animation-delay: 0s;
}
.timeline-card:nth-child(2) img {
    animation-delay: 0.5s;
}
.timeline-card:nth-child(3) img {
    animation-delay: 1s;
}
.timeline-card:nth-child(4) img {
    animation-delay: 1.5s;
}
.timeline-card:nth-child(5) img {
    animation-delay: 2s;
}
.timeline-card:nth-child(6) img {
    animation-delay: 2.5s;
}

.timeline-card-year {
    font-size: 48px;
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
    opacity: 0.9;
    text-align: center;
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1), font-size 0.6s ease, letter-spacing 0.5s ease;
    margin-bottom: -10px;
}

.timeline-card-title, .timeline-card-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.5s ease, transform 0.45s ease;
    transform: translateX(10px);
    color: #eaeaea;
}

.timeline-card-title {
    font-size: 16px;
    margin-top: 0px;
    font-weight: bold;
}

.timeline-card-desc {
    font-size: 14px;
    line-height: 1.35em;
    margin-top: 0px;
}

.timeline-card.active {
    transform: scale(1.32);
}

.timeline-card.active img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 14px;
    transform: none !important;
    animation: none;
}

.timeline-card.active .timeline-card-year {
    font-size: 64px;
    letter-spacing: 1px;
    text-align: left;
}

.timeline-card.active .timeline-card-title,
.timeline-card.active .timeline-card-desc {
    opacity: 1;
    max-height: 400px;
    transform: translateX(0);
}

/* ============================================================================
   MULTIVERSO OBERCOM
   ============================================================================ */
.multiverse-image-container {
    position: relative;
    width: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.multiverse-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid white;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    transform: translateZ(0);
    box-shadow: 0 0 10px var(--primary-blue), 0 0 20px var(--primary-blue), inset 0 0 10px var(--primary-blue);
    position: relative;
    z-index: 1;
    filter: brightness(0.95);
}

.multiverse-image-container:hover .multiverse-image {
    transform: rotateY(15deg) rotateX(-5deg) translateZ(30px) scale(1.05);
    box-shadow: 0 0 20px var(--primary-blue), 0 0 40px var(--primary-blue), 0 0 60px var(--primary-blue), inset 0 0 20px var(--primary-blue);
    filter: brightness(1.1);
}

/* ============================================================================
   ANIMACIONES
   ============================================================================ */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes diagonal-move {
    0% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
    100% { transform: translate(0, 0); }
}

@keyframes diagonal-move-movil {
    0% { transform: translate(0, 0); }
    50% { transform: translate(6px, 6px); }
    100% { transform: translate(0, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes neonGlow {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(65, 182, 230, 0.4),
                    0 0 10px rgba(65, 182, 230, 0.3),
                    0 0 15px rgba(65, 182, 230, 0.2);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(65, 182, 230, 0.6),
                    0 0 20px rgba(65, 182, 230, 0.4),
                    0 0 30px rgba(65, 182, 230, 0.2);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseCustom {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-diagonal {
    animation: diagonal-move 6s ease-in-out infinite;
}

.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }
.delay-4 { animation-delay: 2s; }
.delay-5 { animation-delay: 2.5s; }

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.floating-slow {
    animation: float-slow 4s ease-in-out infinite;
}

.pulse {
    animation: pulseCustom 1.8s infinite ease-in-out;
}

/* ============================================================================
   UTILIDADES
   ============================================================================ */
.start-invisible {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.text-fade-out {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.location-item {
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(5px);
}

/* ============================================================================
   BURBUJA WHATSAPP
   ============================================================================ */
.bubble-container {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    z-index: 90;
}

.small-bubble {
    padding: 8px 12px !important;
    border-radius: 20px !important;
    min-width: 60px !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: pulseCustom 2s infinite ease-in-out;
}

.small-bubble-position {
    top: 6px !important;
    left: -10px !important;
}

.small-triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid white;
    bottom: -8px;
    right: 12px;
    transform: none !important;
}

.large-triangle {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid white;
    bottom: -12px;
    right: 12px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer-link {
    transition: all 0.2s ease;
    display: inline-block;
}
  
.footer-link:hover {
    transform: translateX(3px);
    color: #60a5fa;
}

.contact-link:hover {
    color: #60a5fa;
}

.contacto-mobile-container {
    background: rgba(65, 182, 230, 0.15) !important;
    border: 1px solid white !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    position: relative;
    box-shadow: 0 0 8px rgba(65, 182, 230, 0.3), inset 0 0 4px rgba(65, 182, 230, 0.2);
}

.contacto-mobile-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border-radius: 15px;
    z-index: -1;
    animation: neonGlow 3s ease-in-out infinite alternate;
}

.contacto-mobile-container h3 {
    color: white !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 0 8px rgba(65, 182, 230, 0.4);
}

.contacto-mobile-container a {
    color: white;
    transition: all 0.3s ease !important;
}

.contacto-mobile-container a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 6px rgba(65, 182, 230, 0.8);
    transform: translateX(3px);
}

/* ============================================================================
   MEDIA QUERIES - TODAS JUNTAS Y ORGANIZADAS
   ============================================================================ */

/* MÓVILES (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --section-spacing: 3rem;
    }
    
    /* Scrollbar más fino */
    body::-webkit-scrollbar {
        width: 6px;
    }
    
    body::-webkit-scrollbar-thumb {
        background: rgba(65, 182, 230, 0.6);
        border: none;
    }
    
    /* Header y navegación */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .dropdown-menu-container {
        display: none;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .logo {
        height: 15px;
    }
    
    /* Secciones principales */
    .vertical-scroll-section {
        height: 70vh !important;
        min-height: 70vh !important;
    }
    
    .section-1-content {
        margin-top: 40% !important;
    }
    
    .horizontal-scroll-container {
        flex-direction: column;
        width: 100vw !important;
        height: auto !important;
    }
    
    .horizontal-panel {
        width: 100vw !important;
        height: auto !important;
        min-height: auto !important;
        padding: 4rem 0;
    }
    
    .horizontal-panel.main-section .content {
        padding: 1.5rem !important;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
    
    .panel .content {
        padding: 1.5rem !important;
        margin: 0 1rem;
    }
    
    .main-section {
        z-index: 35 !important;
    }
    
    .panel .content {
        z-index: 45 !important;
    }
    
    /* Tipografía */
    .obercom-text {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }
    
    .custom-text {
        font-size: 3rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
    
    .coverage-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .horizontal-timeline-title {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        text-align: center;
        margin-bottom: 15px;
        font-size: 3rem;
        display: block;
        padding: 0 15px;
    }
    
    /* Botones */
    .btn {
        margin-top: 0.5rem;
        font-size: 1.3rem;
        padding: 0.4rem 1.8rem;
    }
    
    .add-neighborhood-btn {
        font-size: 1.3rem;
        padding: 0.4rem 1.8rem;
        margin-top: 0.5rem;
        z-index: 51 !important;
        opacity: 1 !important;
    }
    
    .add-neighborhood-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        z-index: 51 !important;
        opacity: 1 !important;
    }
    
    /* Carousel */
    .carousel-container {
        height: 280px;
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .carousel__item {
        width: 160px;
        height: 220px;
    }
    
    .carousel__item[data-pos="0"] {
        width: 180px;
        height: 240px;
    }
    
    .carousel__item[data-pos="-1"] {
        transform: translateX(-65%) scale(0.85) translateZ(0);
    }
    
    .carousel__item[data-pos="1"] {
        transform: translateX(65%) scale(0.85) translateZ(0);
    }
    
    .carousel__item[data-pos="-2"] {
        transform: translateX(-120%) scale(0.7) translateZ(-50px);
    }
    
    .carousel__item[data-pos="2"] {
        transform: translateX(120%) scale(0.7) translateZ(-50px);
    }
    
    /* Cobertura */
    .map-coverage-container {
        height: 220px;
        margin-bottom: 1rem;
        max-width: 85%; /* Cambiado de 91% a 85% */
        margin-left: auto;
        margin-right: auto;
    }
    
    .coverage-content-container {
        height: auto;
        min-height: 320px !important;
        padding: 1.25rem !important;
        max-width: 85%; /* Cambiado de 91% a 85% */
        margin: 0 auto;
        transition: all 0.3s ease;
        z-index: 45 !important;
    }
    
    .coverage-content-container.select-open {
        min-height: 380px !important;
    }
    
    .coverage-content-container.select-open .coverage-content-header {
        margin-top: 0.375rem;
    }
    
    .coverage-locations-container {
        max-height: 220px !important;
        min-height: 200px !important;
    }
    
    .coverage-locations-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem !important;
    }
    
    .coverage-location-item-card {
        min-height: 60px !important;
        padding: 0.75rem !important;
        margin-bottom: 0.25rem;
    }
    
    .coverage-location-item-card .text-gray-200 {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
        line-height: 1.4;
    }
    
    .coverage-select-option {
        font-size: 0.875rem;
        padding: 0.75rem 0.625rem;
        min-height: 48px;
    }
    
    .coverage-select-option .count {
        font-size: 0.875rem;
    }
    
    .coverage-filter-buttons-container {
        display: none;
    }
    
    .coverage-custom-select-container {
        display: block;
        width: 100%;
        margin: 0 auto 0.75rem;
    }
    
    .coverage-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }
    
    .coverage-select-trigger {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .coverage-select-options.show {
        max-height: none !important;
        overflow-y: visible !important;
    }
    
    .coverage-button-counter {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.625rem;
        top: -0.25rem;
        right: -0.25rem;
    }
    
    .coverage-location-counter {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
    
    /* Puntos de pago */
    #payment-section {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: auto;
        padding: 2rem 0;
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .payment-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto;
    }
    
    .payment-container > .flex {
        width: 100% !important;
    }
    
    .select-column {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 93% !important;
        margin: 0 auto;
    }
    
    .w-full.lg\\:w-2\\/3.xl\\:w-3\\/4 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        width: 100% !important;
    }
    
    #payment-buttons {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    #payment-section h2 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    #select-options.show {
        max-height: 168px;
    }
    
    #location-items-container.show {
        max-height: 1000px;
    }
    
    #location-items {
        max-height: 250px;
    }
    
    /* Iframe */
    .iframe-container iframe {
        width: 92%;
        height: 100%;
        margin: 0 auto;
        z-index: 41 !important;
    }
    
    .astro-autito {
        display: block;
        width: 90px;
        bottom: -40px;
        left: -5px;
        animation: diagonal-move-movil 8s ease-in-out infinite;
        z-index: 61 !important;
    }
    
    .aro-neon {
        display: none;
    }
    
    /* Grilla */
    .grilla-horizontal {
        display: none;
    }
    
    .grilla-vertical {
        display: block;
    }
    
    .grilla-section img {
        max-width: 95% !important;
        margin: 0 auto;
    }
    
    /* TV Section */
    .tv-section .flex.justify-center {
        margin-top: 0.5rem !important;
    }
    
    .tv-section img {
        width: 16rem !important;
        max-width: 90% !important;
    }
    
    .channel-logo {
        width: 3.5rem !important;
        height: auto;
    }
    
    .channel-logo.telefe {
        top: 0.5rem !important;
        left: 0.5rem !important;
    }
    
    .channel-logo.doce {
        top: 2.5rem !important;
        left: 0.2rem !important;
    }
    
    .channel-logo.universal {
        top: 2.5rem !important;
        right: 0.2rem !important;
    }
    
    .channel-logo.canal {
        top: 0.5rem !important;
        right: 0.5rem !important;
    }
    
    /* Timeline móvil */
    .horizontal-timeline-wrapper {
        height: auto;
        position: relative;
        padding: 10px 0 30px;
    }
    
    .horizontal-timeline-section {
        display: flex;
        flex-direction: column;
        height: auto;
        position: relative;
        padding: 0;
        transform: none !important;
        gap: 0;
        width: 100%;
    }
    
    .timeline-card {
        width: calc(100% - 30px);
        margin: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 25px 15px;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-sizing: border-box;
        min-height: 160px;
    }
    
    .timeline-card:first-child {
        margin-left: 15px;
    }
    
    .timeline-card-image-container {
        width: 150px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
    }
    
    .timeline-card img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: cover;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation: float-mobile 6s ease-in-out infinite;
        border: 2px solid white;
        box-shadow: 0 0 5px var(--primary-blue), 0 0 10px var(--primary-blue), 0 0 15px var(--primary-blue), inset 0 0 3px var(--primary-blue), inset 0 0 6px var(--primary-blue);
    }
    
    @keyframes float-mobile {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
        100% { transform: translateY(0px); }
    }
    
    .timeline-card:nth-child(1) img { animation-delay: 0s; }
    .timeline-card:nth-child(2) img { animation-delay: 0.5s; }
    .timeline-card:nth-child(3) img { animation-delay: 1s; }
    .timeline-card:nth-child(4) img { animation-delay: 1.5s; }
    .timeline-card:nth-child(5) img { animation-delay: 2s; }
    .timeline-card:nth-child(6) img { animation-delay: 2.5s; }
    
    .timeline-card-year-container {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 5;
    }
    
    .timeline-card:nth-child(odd) .timeline-card-year-container {
        left: 15px;
        text-align: left;
    }
    
    .timeline-card:nth-child(even) .timeline-card-year-container {
        right: 15px;
        text-align: right;
    }
    
    .timeline-card-year {
        font-size: 34px;
        font-weight: bold;
        margin: 0;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .timeline-card-content {
        width: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        flex-direction: column;
    }
    
    .timeline-card.active {
        transform: none;
        padding: 25px 15px;
        min-height: 220px;
        justify-content: space-between;
    }
    
    .timeline-card.active .timeline-card-image-container {
        width: 110px;
        height: 110px;
        border-radius: 15px;
    }
    
    .timeline-card.active img {
        border-radius: 15px;
        transform: scale(0.95);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        animation: none;
    }
    
    .timeline-card.active .timeline-card-year-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .timeline-card.active .timeline-card-content .timeline-card-year {
        display: block;
        font-size: 38px;
        text-align: left;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .timeline-card.active .timeline-card-content {
        width: calc(100% - 130px);
        opacity: 1;
        padding: 0 10px;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    
    .timeline-card-content .timeline-card-title,
    .timeline-card-content .timeline-card-desc {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .timeline-card:nth-child(odd).active .timeline-card-content .timeline-card-title,
    .timeline-card:nth-child(odd).active .timeline-card-content .timeline-card-desc {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }
    
    .timeline-card:nth-child(odd).active .timeline-card-content .timeline-card-desc {
        transition-delay: 0.3s;
    }
    
    .timeline-card:nth-child(even).active .timeline-card-content .timeline-card-title,
    .timeline-card:nth-child(even).active .timeline-card-content .timeline-card-desc {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }
    
    .timeline-card:nth-child(even).active .timeline-card-content .timeline-card-desc {
        transition-delay: 0.3s;
    }
    
    .timeline-card:not(.active) .timeline-card-content .timeline-card-title,
    .timeline-card:not(.active) .timeline-card-content .timeline-card-desc {
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    
    .timeline-card:nth-child(odd):not(.active) .timeline-card-content .timeline-card-title,
    .timeline-card:nth-child(odd):not(.active) .timeline-card-content .timeline-card-desc {
        transform: translateX(-30px);
    }
    
    .timeline-card:nth-child(even):not(.active) .timeline-card-content .timeline-card-title,
    .timeline-card:nth-child(even):not(.active) .timeline-card-content .timeline-card-desc {
        transform: translateX(30px);
    }
    
    .timeline-card:nth-child(odd).active {
        flex-direction: row-reverse;
    }
    
    .timeline-card:nth-child(odd).active .timeline-card-content {
        text-align: left;
    }
    
    .timeline-card:nth-child(even).active {
        flex-direction: row;
    }
    
    .timeline-card:nth-child(even).active .timeline-card-content {
        text-align: left;
    }
    
    .timeline-card:nth-child(odd).active .timeline-card-image-container {
        margin-left: 8px;
    }
    
    .timeline-card:nth-child(even).active .timeline-card-image-container {
        margin-right: 8px;
    }
    
    /* Multiverso */
    .multiverse-image-container:hover .multiverse-image {
        transform: rotateY(10deg) rotateX(-3deg) translateZ(20px) scale(1.03);
    }
    
    .multiverse-image-container:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    /* Efectos visuales */
    .gradient-circle {
        filter: blur(40px);
        z-index: -1 !important;
    }
    
    .gradient-circle.orange-circle-mobile {
        background: radial-gradient(circle, rgba(255,92,57,0.7) 0%, rgba(255,92,57,0) 70%) !important;
    }
    
    /* Espaciado */
    .dynamic-section {
        margin-bottom: var(--mobile-section-spacing);
    }
    
    .add-neighborhood-section {
        margin-top: 0.5rem;
        margin-bottom: 0.75rem;
        padding: 0.125rem 0;
        z-index: 50 !important;
        opacity: 1 !important;
    }
    
    #coverage-section + .add-neighborhood-section {
        margin-bottom: 1.5rem !important;
    }
    
    .add-neighborhood-section + #payment-section {
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
    }
    
    #payment-section + #timeline-wrapper {
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
    }
    
    #timeline-wrapper + #multiverse-section {
        margin-top: 2.5rem !important;
        padding-top: 2.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    #multiverse-section + footer {
        margin-top: 4rem !important;
        padding-top: 4rem !important;
    }
    
    #timeline-wrapper {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    #multiverse-section {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
}

/* TABLETS (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .dropdown-content {
        min-width: 180px;
    }
    
    .timeline-card {
        min-height: 180px;
    }
    
    .timeline-card.active {
        min-height: 240px;
    }
    
    .timeline-card-image-container {
        width: 160px;
        height: 160px;
    }
    
    .timeline-card.active .timeline-card-image-container {
        width: 120px;
        height: 120px;
    }
    
    .timeline-card.active .timeline-card-content {
        width: calc(100% - 140px);
    }
}

/* ESCRITORIO (min-width: 769px) */
@media (min-width: 769px) {
    /* Secciones */
    .coverage-section {
        margin-bottom: 3rem;
        padding-bottom: 0.5rem;
    }
    
    .coverage-section .flex.flex-col.lg\:flex-row {
        gap: 0.75rem;
    }
    
    .coverage-section > .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    /* Cobertura */
    .map-coverage-container {
        height: 340px;
    }
    
    .coverage-content-container {
        height: 340px;
        min-height: 340px;
        max-height: 340px;
        display: flex;
        flex-direction: column;
    }
    
    .coverage-locations-container {
        max-height: calc(340px - 120px);
        height: auto;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
    }
    
    .coverage-custom-select-container {
        display: none;
    }
    
    .coverage-filter-buttons-container {
        display: flex;
    }
    
    #coverage-locations-content {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    
    .coverage-locations-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 100%;
    }
    
    .coverage-filter-button {
        padding: 0.875rem 0.75rem !important;
        font-size: 1.125rem !important;
    }
    
    .coverage-button-counter {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.875rem;
    }
    
    .coverage-section .w-full.lg\:w-1\/2 {
        display: flex;
        flex-direction: column;
    }
    
    /* Iframe */
    .iframe-container iframe {
        width: 100%;
        height: 85%;
    }
    
    .aro-neon {
        display: block;
        top: -15px;
        left: -25px;
        right: -25px;
        bottom: -30px;
        z-index: 60 !important;
    }
    
    .astro-autito {
        display: block;
        width: 180px;
        bottom: -30px;
        left: -30px;
        animation: diagonal-move-movil 8s ease-in-out infinite;
        z-index: 61 !important;
    }
    
    /* Grilla */
    .grilla-horizontal {
        max-width: 100% !important;
        margin: 0 auto;
    }
    
    /* Sección TV */
    .tv-section .flex.justify-center {
        position: relative;
        z-index: 40 !important;
    }
    
    /* Add neighborhood section */
    .add-neighborhood-section {
        margin-top: 0.75rem;
        margin-bottom: 1rem;
        padding: 0.25rem 0;
        z-index: 50 !important;
        opacity: 1 !important;
    }
    
    .add-neighborhood-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        z-index: 51 !important;
        opacity: 1 !important;
    }
}

/* ESCRITORIO GRANDE (min-width: 1024px) */
@media (min-width: 1024px) {
    .coverage-section > .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .payment-container {
        min-height: 80vh;
        padding-top: 2rem;
    }
    
    .iframe-container iframe {
        width: 70%;
        height: 80%;
    }
    
    .aro-neon {
        top: -0px;
        left: -30px;
        right: -30px;
        bottom: -90px;
        z-index: 60 !important;
    }
    
    .astro-autito {
        width: 180px;
        bottom: -35px;
        left: 15px;
        animation: diagonal-move 8s ease-in-out infinite;
        z-index: 61 !important;
    }
    
    .grilla-horizontal {
        max-width: 95% !important;
        margin: 0 auto;
    }
    
    .add-neighborhood-title {
        font-size: 2rem;
        margin-bottom: 1.3rem;
        z-index: 51 !important;
        opacity: 1 !important;
    }
}

/* ESCRITORIO MUY GRANDE (min-width: 1280px) */
@media (min-width: 1280px) {
    .coverage-section > .container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    
    .map-coverage-container {
        height: 360px;
    }
    
    .coverage-content-container {
        height: 360px;
        min-height: 360px;
        max-height: 360px;
    }
    
    .coverage-locations-container {
        max-height: calc(360px - 120px);
    }
    
    .coverage-location-item-card .text-gray-200 {
        font-size: 1rem;
    }
    
    .grilla-horizontal {
        max-width: 90% !important;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .coverage-location-item-card {
        min-height: 55px;
        padding: 0.625rem;
    }
    
    .coverage-location-item-card .text-gray-200 {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }
}

/* PANTALLAS MUY PEQUEÑAS (max-width: 480px) */
@media (max-width: 480px) {
    /* Carousel */
    .carousel-container {
        height: 260px;
        padding: 0 0.8rem;
    }
    
    .carousel__item {
        width: 140px;
        height: 190px;
    }
    
    .carousel__item[data-pos="0"] {
        width: 160px;
        height: 210px;
    }
    
    .carousel__item[data-pos="-1"] {
        transform: translateX(-60%) scale(0.85) translateZ(0);
    }
    
    .carousel__item[data-pos="1"] {
        transform: translateX(60%) scale(0.85) translateZ(0);
    }
    
    .carousel__item[data-pos="-2"] {
        transform: translateX(-110%) scale(0.7) translateZ(-50px);
    }
    
    .carousel__item[data-pos="2"] {
        transform: translateX(110%) scale(0.7) translateZ(-50px);
    }
    
    /* Secciones */
    .horizontal-panel.main-section .content {
        padding: 1.2rem !important;
        margin: 0 0.8rem;
        width: calc(100% - 1.6rem);
    }
    
    .obercom-text {
        font-size: 2.2rem;
    }
    
    .custom-text {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
    
    .horizontal-panel.main-section {
        padding: 3.5rem 0;
    }
    
    /* Botones */
    .btn {
        font-size: 1.2rem;
        padding: 0.4rem 1.5rem;
    }
    
    .panel .content {
        padding: 1rem;
    }
    
    /* Puntos de pago */
    #payment-section {
        padding-left: 0.9rem !important;
        padding-right: 0.9rem !important;
    }
    
    #payment-section h2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        font-size: 1.9rem !important;
    }
    
    #payment-buttons {
        padding: 1rem !important;
    }
    
    /* TV Section */
    .channel-logo {
        width: 3rem !important;
    }
    
    .channel-logo.telefe {
        top: 0.3rem !important;
        left: 0.3rem !important;
    }
    
    .channel-logo.doce {
        top: 2rem !important;
        left: 0.1rem !important;
    }
    
    .channel-logo.universal {
        top: 2rem !important;
        right: 0.1rem !important;
    }
    
    .channel-logo.canal {
        top: 0.3rem !important;
        right: 0.3rem !important;
    }
    
    .astro-autito {
        width: 100px;
        bottom: -35px;
        left: -5px;
        animation: diagonal-move-movil 8s ease-in-out infinite;
        z-index: 61 !important;
    }
    
    /* Efectos visuales */
    .gradient-circle {
        filter: blur(30px);
    }
    
    /* Timeline */
    .horizontal-timeline-title {
        font-size: 2.5rem;
        padding: 0 10px;
    }
    
    .timeline-card {
        width: calc(100% - 20px);
        margin: 0 10px;
        padding: 20px 10px;
        min-height: 150px;
    }
    
    .timeline-card:first-child {
        margin-left: 10px;
    }
    
    .timeline-card-image-container {
        width: 130px;
        height: 130px;
    }
    
    .timeline-card.active .timeline-card-image-container {
        width: 90px;
        height: 90px;
    }
    
    .timeline-card.active .timeline-card-year-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .timeline-card-year {
        font-size: 30px;
    }
    
    .timeline-card.active .timeline-card-content .timeline-card-year {
        font-size: 32px;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .timeline-card-title {
        font-size: 17px;
    }
    
    .timeline-card-desc {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .timeline-card.active .timeline-card-content {
        width: calc(100% - 100px);
        padding: 0 6px;
    }
    
    .timeline-card:nth-child(odd).active .timeline-card-image-container {
        margin-left: 6px;
    }
    
    .timeline-card:nth-child(even).active .timeline-card-image-container {
        margin-right: 6px;
    }
}

/* PANTALLAS EXTREMADAMENTE PEQUEÑAS (max-width: 360px) */
@media (max-width: 360px) {
    .carousel-container {
        height: 240px;
        padding: 0 0.5rem;
    }
    
    .carousel__item {
        width: 130px;
        height: 180px;
    }
    
    .carousel__item[data-pos="0"] {
        width: 150px;
        height: 200px;
    }
    
    .channel-logo {
        width: 2.8rem !important;
    }
    
    .channel-logo.telefe {
        top: 0.2rem !important;
        left: 0.2rem !important;
    }
    
    .channel-logo.doce {
        top: 1.5rem !important;
        left: 0.05rem !important;
    }
    
    .channel-logo.universal {
        top: 1.5rem !important;
        right: 0.05rem !important;
    }
    
    .channel-logo.canal {
        top: 0.2rem !important;
        right: 0.2rem !important;
    }
    
    .tv-section img {
        width: 14rem !important;
    }
    
    .horizontal-panel.main-section {
        padding: 3rem 0;
    }
    
    .astro-autito {
        width: 90px;
        bottom: -30px;
        left: -5px;
        animation: diagonal-move 8s ease-in-out infinite;
        z-index: 61 !important;
    }
}

.seccion-muy-abajo {
    content-visibility: auto;
    contain-intrinsic-size: 500px; /* Una altura estimada */
}