/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
    /* Colores */
    --primary: #0d3584;
    --primary-dark: #0a1f4a;
    --secondary: #e50339;
    --secondary-hover: #c40232;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;

    /* Neutros */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --dark: #0d1b2a;

    /* Z-index */
    --z-header: 1000;
    --z-menu: 1001;
    --z-cookie: 1002;
    --z-modal: 2000;
    --z-alert: 3000;

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;

    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */
header {
    background: var(--white);
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: var(--z-header);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    max-height: 150px;
    width: auto;
    object-fit: contain;
}

/* Menú Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: var(--z-menu);
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* Navegación */
nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background var(--transition-fast), color var(--transition-fast);
}

nav a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--white);
        padding: 2rem 0;
        box-shadow: var(--shadow-md);
        transition: left var(--transition-medium);
        overflow-y: auto;
    }

    nav ul.active {
        left: 0;
    }

    nav a {
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid var(--gray-200);
    }

    nav a:hover {
        background: var(--gray-100);
        color: var(--primary);
    }

    /* Animación hamburguesa */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 70px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-desktop {
    display: block;
}

.video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .video-desktop {
        display: none;
    }
    .video-mobile {
        display: block;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BOTONES
   ============================================ */
.btn-primario {
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    transition: background var(--transition-fast);
    font-weight: 600;
}

.btn-primario:hover {
    background: var(--secondary-hover);
}

.btn {
    background: linear-gradient(135deg, var(--primary) 0%, #1a509a 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition-fast);
    width: 100%;
    max-width: 200px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 53, 132, 0.3);
}

/* ============================================
   SERVICIOS (ICONOS 3D)
   ============================================ */
.servicios-iconos {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    text-align: center;
}

.servicios-iconos h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.servicios-iconos h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--secondary);
}

.iconos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 2rem;
}

.icono-3d {
    perspective: 1000px;
    width: 250px;
    height: 250px;
}

.icono-caja {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.icono-3d:hover .icono-caja {
    transform: rotateY(180deg);
}

.icono-frente,
.icono-atras {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.icono-frente {
    background: linear-gradient(135deg, var(--primary) 0%, #1a509a 100%);
    color: var(--white);
}

.icono-atras {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff2b4e 100%);
    color: var(--white);
    transform: rotateY(180deg);
    padding: 1rem;
    text-align: center;
}

.icono-3d i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.icono-3d h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.icono-atras p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* DUO */
.icono-duo .icono-frente {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.icono-duo .icono-atras {
    background: linear-gradient(135deg, var(--warning) 0%, #e67e22 100%);
}

/* ============================================
   PLANES
   ============================================ */
#planes {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

#planes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

#planes h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--secondary);
}

.planes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.plan-card.popular {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.plan-card.popular::before {
    background: var(--secondary);
    height: 6px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.plan-header .speed {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 1rem 0;
}

.popular-tag {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.plan-price {
    font-size: 2.2rem;
    color: var(--success);
    font-weight: 700;
    margin: 1.5rem 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.8rem 0;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features li i {
    color: var(--secondary);
    width: 24px;
    text-align: center;
}

/* Términos del plan */
.plan-terms {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(13, 53, 132, 0.05);
    border-radius: var(--radius-sm);
    border-top: 2px solid var(--secondary);
}

.terms-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-title i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.terms-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list i {
    color: var(--secondary);
    min-width: 20px;
    text-align: center;
}

.plan-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .plan-card.popular {
        transform: scale(1);
    }
    .plan-terms {
        margin: 1rem 0;
        padding: 0.8rem;
    }
    .terms-list li {
        font-size: 0.85rem;
    }
}

/* ============================================
   PAQUETES COMBINADOS
   ============================================ */
.bundles-section {
    padding: 6rem 5%;
    background: var(--gray-100);
    text-align: center;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bundles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.bundle-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.bundle-card:hover {
    transform: translateY(-5px);
}

.bundle-card.popular {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.bundle-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    position: relative;
}

.bundle-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.bundle-tag {
    position: absolute;
    top: -10px;
    right: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    width: 120px;
    text-align: center;
}

.bundle-content {
    padding: 2rem;
}

.internet-info,
.tv-info {
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 10px;
    background: var(--gray-100);
}

.speed,
.channels {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: 700;
    margin: 0.5rem 0;
}

.price-box {
    margin: 2rem 0;
}

.bundle-price {
    font-size: 2rem;
    color: var(--success);
    font-weight: 700;
}

.bundle-price span {
    font-size: 1rem;
    color: var(--gray-600);
}

.bundle-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.bundle-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bundle-features i {
    color: var(--success);
}

@media (max-width: 768px) {
    .bundles-container {
        grid-template-columns: 1fr;
    }
    .bundle-card.popular {
        transform: scale(1);
    }
}

/* ============================================
   FIBRA ÓPTICA
   ============================================ */
.fiber-info {
    padding: 6rem 5%;
    background: var(--white);
}

.fiber-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fiber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.fiber-card {
    position: relative;
    transition: transform var(--transition-fast);
}

.image-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 53, 132, 0.4) 0%, rgba(229, 3, 57, 0.3) 100%);
}

.fiber-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

.fiber-card h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary);
}

.fiber-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

.fiber-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .fiber-grid {
        grid-template-columns: 1fr;
    }
    .image-container img {
        height: 250px;
    }
}

/* ============================================
   COBERTURA (MAPAS)
   ============================================ */
.map-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.map-tabs-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.map-tabs-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.map-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.map-tab {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.map-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--secondary);
}

.map-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #1a509a 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 53, 132, 0.2);
    border-color: var(--secondary);
}

.map-iframe {
    display: none;
}

.map-iframe.active {
    display: block;
}

@media (max-width: 768px) {
    .map-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    .map-tab {
        flex-shrink: 0;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .map-tabs-container h2 {
        font-size: 2rem;
    }
}

/* Service Cards en mapa */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.service-card {
    background: linear-gradient(145deg, var(--white), var(--gray-100));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(13, 53, 132, 0.1);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 53, 132, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 53, 132, 0.2);
}

.service-card i {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), #1a509a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.service-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--success);
    color: var(--white);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-tag.promo {
    background: var(--secondary);
    right: -40px;
    padding: 8px 45px;
}

/* WhatsApp */
.whatsapp-section {
    text-align: center;
    margin: 30px 0;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #1DA851;
}

/* ============================================
   MEDIOS DE PAGO Y CONTACTO
   ============================================ */
.payment-section,
.contact-section {
    padding: 4rem 5%;
    background: var(--white);
}

.contact-section {
    background: var(--gray-100);
}

.district-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.district-btn {
    background: none;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.district-btn img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    filter: grayscale(70%);
    transition: filter var(--transition-fast);
}

.district-btn span {
    display: block;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.district-btn.active {
    border-color: var(--secondary);
}

.district-btn.active img {
    filter: grayscale(0);
}

.district-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.payment-cards,
.contact-cards {
    margin-top: 2rem;
}

.payment-card,
.contact-card {
    display: none;
    background: var(--gray-100);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.payment-card.active,
.contact-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.method {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    transition: transform var(--transition-fast);
}

.method:hover {
    transform: translateY(-5px);
}

.method i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
    .district-buttons {
        grid-template-columns: 1fr;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BOTONES DE COPIAR
   ============================================ */
.copy-btn {
    background: rgba(13, 53, 132, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 15px;
    cursor: pointer;
    margin-left: 10px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8em;
}

.copy-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.copy-btn i {
    font-size: 0.9em;
}

/* ============================================
   COPY ALERT
   ============================================ */
.copy-alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    display: none;
    animation: slideUp 0.3s ease;
    z-index: var(--z-alert);
}

.copy-alert.error {
    background: var(--danger);
}

.copy-alert.phone {
    background: var(--primary);
}

@keyframes slideUp {
    from {
        bottom: -50px;
        opacity: 0;
    }
    to {
        bottom: 20px;
        opacity: 1;
    }
}

/* ============================================
   PROMO SECCIÓN
   ============================================ */
.promo-section {
    width: 100%;
    margin: 30px 0;
    padding: 0;
    overflow: hidden;
}

.promo-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: none;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.promo-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.promo-badge {
    background: linear-gradient(135deg, var(--secondary), #ff3366);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(229, 3, 57, 0.3);
}

@media (max-width: 480px) {
    .promo-container {
        border-radius: var(--radius-sm);
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    .promo-image {
        max-height: 200px;
        object-fit: cover;
    }
    .promo-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .promo-container {
        border-radius: 10px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }
    .promo-image {
        max-height: 320px;
        object-fit: cover;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .promo-container {
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }
    .promo-image {
        max-height: 500px;
        object-fit: cover;
    }
}

@media (min-width: 1201px) {
    .promo-container {
        margin: 0 auto;
        max-width: 1200px;
    }
    .promo-image {
        max-height: 600px;
        object-fit: cover;
    }
    .promo-container:hover .promo-image {
        transform: scale(1.02);
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    border-top: 4px solid var(--secondary);
}

footer h4 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--white);
}

footer p,
footer ul li {
    color: #e0e1dd;
    margin-bottom: 0.8rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a {
    color: #e0e1dd;
    text-decoration: none;
    transition: color var(--transition-fast);
}

footer ul li a:hover {
    color: var(--secondary);
}

footer a {
    color: #e0e1dd;
    text-decoration: none;
    transition: color var(--transition-fast);
}

footer a:hover {
    color: var(--secondary);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1b263b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--white);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.social-btn i {
    font-size: 1.2rem;
}

/* ============================================
   BOTÓN RECLAMOS
   ============================================ */
.btn-reclamo {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.btn-reclamo:hover {
    background: var(--secondary-hover);
}

/* ============================================
   MODAL RECLAMOS
   ============================================ */
.modal-reclamo {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-modal);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    transition: color var(--transition-fast);
    color: var(--gray-600);
}

.close:hover {
    color: var(--secondary);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 53, 132, 0.1);
}

.form-text {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.95);
    color: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    transition: bottom var(--transition-slow);
    z-index: var(--z-cookie);
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-banner p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner button {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 600;
}

.cookie-banner button:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

/* ============================================
   LOCATION BUTTONS
   ============================================ */
.location-buttons-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.location-btn {
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-medium);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.location-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.location-btn:hover::before {
    opacity: 1;
}

.nasa-btn {
    background: linear-gradient(135deg, var(--primary), #1a509a);
    color: var(--white);
}

.marcona-btn {
    background: linear-gradient(135deg, var(--secondary), #ff1a53);
    color: var(--white);
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .location-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    .location-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mb-3 {
    margin-bottom: 3rem;
}