/* ================================================
   DISTRITO NOCTURNO - ZONA DE ESCORTS
   WetCitas.com - Diseño Realista y Sofisticado
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Crimson+Pro:wght@400;600&display=swap');

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

:root {
    /* Paleta nocturna realista */
    --negro-noche: #0a0a0f;
    --negro-profundo: #151520;
    --gris-asfalto: #1a1a2e;
    --neon-rosa: #ff0080;
    --neon-cyan: #00fff5;
    --neon-purpura: #b026ff;
    --dorado-lujo: #ffd700;
    --rojo-pasion: #ff1744;
    
    /* Efectos de luz */
    --sombra-neon: 0 0 20px rgba(255, 0, 128, 0.5), 0 0 40px rgba(255, 0, 128, 0.3);
    --resplandor-ventana: 0 0 30px rgba(255, 215, 0, 0.6);
}

body {
    font-family: 'Crimson Pro', serif;
    background: var(--negro-noche);
    overflow-x: hidden;
    min-height: 100vh;
    color: #fff;
    position: relative;
}

/* Cielo nocturno con estrellas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        linear-gradient(to bottom, 
            #0a0a0f 0%,
            #151520 40%,
            #1a1a2e 100%
        );
    background-size: 
        200% 200%,
        200% 200%,
        200% 200%,
        200% 200%,
        200% 200%,
        200% 200%,
        100% 100%;
    animation: twinkle 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Luna en el cielo */
body::after {
    content: '';
    position: fixed;
    top: 80px;
    right: 60px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #fff, #e0e0e0);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    z-index: 1;
    pointer-events: none;
}

.distrito-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* ==================== HEADER MEJORADO ==================== */
.distrito-header {
    text-align: center;
    padding: 25px 20px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--neon-rosa);
    box-shadow: 0 4px 30px rgba(255, 0, 128, 0.2);
    position: static;
}

.distrito-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 
        0 0 10px var(--neon-rosa),
        0 0 20px var(--neon-rosa),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff0080, #ff1744, #b026ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.subtitulo {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dorado-lujo);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-style: italic;
    letter-spacing: 0.5px;
}

.instrucciones {
    font-size: 14px;
    color: var(--neon-cyan);
    margin-bottom: 12px;
    animation: pulse 2s infinite;
    text-shadow: 0 0 10px rgba(0, 255, 245, 0.5);
    font-style: italic;
}

.icono-dedo {
    display: inline-block;
    animation: swipe 1.5s infinite;
    font-size: 18px;
}

@keyframes swipe {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(12px); }
}

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

.info-contacto {
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.6;
}

.info-contacto strong {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 245, 0.5);
}

.info-contacto p {
    margin: 6px 0;
}

.btn-contacto {
    color: var(--dorado-lujo);
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.btn-contacto:hover {
    color: var(--neon-rosa);
    text-shadow: 0 0 15px var(--neon-rosa);
    background: rgba(255, 0, 128, 0.1);
}

/* ==================== SCROLL CONTAINER ==================== */
.distrito-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 60px 0;
    position: relative;
}

.distrito-scroll::-webkit-scrollbar {
    height: 0;
    display: none;
}

/* Niebla ambiental */
.distrito-scroll::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(26, 26, 46, 0.8) 0%,
        rgba(26, 26, 46, 0.4) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* ==================== PASILLO URBANO ==================== */
.pasillo {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 0 30px;
    min-width: max-content;
    perspective: 1200px;
    position: relative;
}

/* ==================== PANEL CENTRAL CON SILUETAS SENSUALES ==================== */
.camino-central {
    width: 140px;
    align-self: stretch;
    background: 
        linear-gradient(to bottom, 
            rgba(10, 10, 15, 0.95) 0%,
            rgba(21, 21, 32, 0.95) 50%,
            rgba(10, 10, 15, 0.95) 100%
        );
    position: relative;
    border-left: 3px solid var(--neon-rosa);
    border-right: 3px solid var(--neon-rosa);
    box-shadow: 
        inset 0 0 40px rgba(255, 0, 128, 0.3),
        0 0 30px rgba(255, 0, 128, 0.4);
    overflow: hidden;
}

/* Resplandor de fondo */
.camino-central::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(255, 0, 128, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(176, 38, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 0, 128, 0.2) 0%, transparent 50%);
    animation: resplandorPulso 4s ease-in-out infinite;
}

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

/* Siluetas de bailarinas/modelos */
.camino-linea {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        var(--neon-rosa) 20%,
        var(--neon-rosa) 40%,
        transparent 45%,
        var(--neon-rosa) 55%,
        var(--neon-rosa) 75%,
        transparent 100%
    );
    border-radius: 50% 50% 40% 40%;
    opacity: 0;
    animation: siluetaDanza 6s ease-in-out infinite;
    filter: blur(1px);
}

/* Forma de cuerpo femenino */
.camino-linea::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--neon-rosa), transparent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-rosa);
}

/* Curvas del cuerpo */
.camino-linea::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 45px;
    background: 
        radial-gradient(ellipse at 30% 30%, var(--neon-rosa) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, var(--neon-rosa) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.8;
}

.camino-linea:nth-child(1) { 
    animation-delay: 0s;
    filter: blur(1.5px);
}

.camino-linea:nth-child(2) { 
    animation-delay: 2s;
    filter: blur(1px);
    --neon-rosa: #b026ff;
}

.camino-linea:nth-child(3) { 
    animation-delay: 4s;
    filter: blur(2px);
    --neon-rosa: #ff1744;
}

@keyframes siluetaDanza {
    0% { 
        top: -10%;
        opacity: 0;
        transform: translateX(-50%) scale(0.8) rotateZ(-5deg);
    }
    5% {
        opacity: 0.6;
    }
    20% { 
        transform: translateX(-50%) scale(1) rotateZ(5deg);
        opacity: 0.8;
    }
    40% { 
        transform: translateX(-50%) scale(1.1) rotateZ(-3deg);
        opacity: 0.9;
    }
    60% { 
        transform: translateX(-50%) scale(1) rotateZ(3deg);
        opacity: 0.8;
    }
    80% { 
        transform: translateX(-50%) scale(0.9) rotateZ(-2deg);
        opacity: 0.6;
    }
    95% {
        opacity: 0.3;
    }
    100% { 
        top: 110%;
        opacity: 0;
        transform: translateX(-50%) scale(0.7) rotateZ(5deg);
    }
}

/* Detalles adicionales - corazones flotantes */
.camino-central::after {
    content: '💋';
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: corazonFlota 8s ease-in-out infinite;
    text-shadow: 0 0 20px var(--neon-rosa);
}

@keyframes corazonFlota {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: translate(-50%, -60%) scale(1.3);
        opacity: 0.5;
    }
}

/* ==================== EDIFICIOS TIPO CLUB NOCTURNO ==================== */
.edificios-fila {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.edificio {
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    filter: brightness(0.9);
}

.edificio:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
}

.edificio:active {
    transform: scale(0.97);
}

/* ==================== FACHADA REALISTA ==================== */
.edificio-fachada {
    width: 200px;
    height: 320px;
    background: 
        linear-gradient(135deg, 
            var(--color-edificio) 0%,
            color-mix(in srgb, var(--color-edificio) 60%, black) 50%,
            color-mix(in srgb, var(--color-edificio) 40%, black) 100%
        );
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.9),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    transition: all 0.4s ease;
}

.edificio:hover .edificio-fachada {
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.95),
        0 0 40px var(--color-edificio),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
}

/* Estructura de ladrillo/textura */
.edificio-fachada::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 15px,
            rgba(0, 0, 0, 0.1) 15px,
            rgba(0, 0, 0, 0.1) 16px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(0, 0, 0, 0.05) 30px,
            rgba(0, 0, 0, 0.05) 31px
        );
    pointer-events: none;
}

/* ==================== CARTEL NEÓN SUPERIOR ==================== */
.edificio-techo {
    position: absolute;
    top: -40px;
    left: -10px;
    right: -10px;
    height: 50px;
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.95),
        rgba(21, 21, 32, 0.95)
    );
    border-radius: 8px;
    border: 2px solid var(--neon-rosa);
    box-shadow: 
        0 0 20px var(--neon-rosa),
        0 0 40px rgba(255, 0, 128, 0.3),
        inset 0 2px 10px rgba(255, 0, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: neonFlicker 3s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% { 
        opacity: 1;
        filter: brightness(1);
    }
    50% { 
        opacity: 0.9;
        filter: brightness(1.1);
    }
    75% { 
        opacity: 0.95;
    }
}

/* ==================== BANNER PRINCIPAL (GRAN VENTANA ILUMINADA) ==================== */
.edificio-banner {
    position: absolute;
    top: 30px;
    left: 15px;
    right: 15px;
    height: 140px;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        inset 0 0 20px rgba(255, 215, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.8);
    border: 4px solid rgba(255, 215, 0, 0.4);
    text-decoration: none;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #0a0a0f);
}

/* Efecto de luz que sale de la ventana */
.edificio-banner::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 215, 0, 0.3) 0%,
        transparent 70%
    );
    pointer-events: none;
    animation: lightPulse 3s ease-in-out infinite;
}

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

.edificio-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(1.1) contrast(1.1);
}

.edificio:hover .edificio-banner img {
    transform: scale(1.08);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%
    );
    padding: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.edificio:hover .banner-overlay {
    opacity: 1;
}

.banner-cta {
    color: var(--dorado-lujo);
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    letter-spacing: 1px;
}

/* ==================== VENTANAS ILUMINADAS ==================== */
.edificio-ventanas {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 30px;
    gap: 10px;
}

.ventana {
    width: 40px;
    height: 55px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.9) 0%,
        rgba(255, 165, 0, 0.8) 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.7),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    animation: ventanaParpadeo 4s infinite;
}

.ventana:nth-child(2) {
    animation-delay: 1s;
}

@keyframes ventanaParpadeo {
    0%, 90%, 100% { 
        opacity: 1;
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.7),
            inset 0 2px 8px rgba(255, 255, 255, 0.3);
    }
    93%, 97% { 
        opacity: 0.3;
        box-shadow: 
            0 0 5px rgba(255, 215, 0, 0.3),
            inset 0 2px 8px rgba(255, 255, 255, 0.1);
    }
}

/* Marco de ventana */
.ventana::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.4);
}

.ventana::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(0, 0, 0, 0.4);
}

/* ==================== PUERTA DE ENTRADA ==================== */
.edificio-puerta {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 85px;
    background: linear-gradient(to bottom, 
        #3a1a0a 0%,
        #2a0f05 50%,
        #1a0503 100%
    );
    border-radius: 4px 4px 0 0;
    border: 3px solid rgba(139, 69, 19, 0.6);
    box-shadow: 
        inset 0 4px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 128, 0.3);
    position: relative;
}

/* Textura de madera */
.edificio-puerta::before {
    content: '';
    position: absolute;
    inset: 5px;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.2) 8px,
            rgba(0, 0, 0, 0.2) 9px
        );
    border-radius: 2px;
}

.puerta-manija {
    position: absolute;
    right: 12px;
    top: 42px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, var(--dorado-lujo), #b8860b);
    border-radius: 50%;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 215, 0, 0.5);
}

/* Luz sobre la puerta */
.edificio-puerta::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: radial-gradient(ellipse, 
        rgba(255, 0, 128, 0.8),
        transparent
    );
    box-shadow: 0 0 15px var(--neon-rosa);
}

/* ==================== NOMBRE DEL CLUB ==================== */
.edificio-nombre {
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    color: var(--dorado-lujo);
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    padding: 8px 5px;
    background: rgba(10, 10, 15, 0.8);
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== INDICADOR DE PROGRESO ==================== */
.scroll-indicador {
    position: sticky;
    bottom: 80px;
    width: 90%;
    max-width: 500px;
    height: 6px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 128, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

.scroll-progreso {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--neon-rosa),
        var(--neon-purpura),
        var(--neon-cyan)
    );
    border-radius: 3px;
    transition: width 0.2s ease;
    width: 0%;
    box-shadow: 0 0 20px var(--neon-rosa);
}

/* ==================== FOOTER ==================== */
.distrito-footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(10, 10, 15, 0.95);
    border-top: 2px solid var(--neon-rosa);
}

.btn-volver {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, 
        var(--neon-rosa),
        var(--rojo-pasion),
        var(--neon-purpura)
    );
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 
        0 6px 20px rgba(255, 0, 128, 0.5),
        0 0 40px rgba(255, 0, 128, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.btn-volver:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 0, 128, 0.7),
        0 0 60px rgba(255, 0, 128, 0.5);
}

.btn-volver:active {
    transform: translateY(-1px);
}

/* SEO Footer Content */
.seo-footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 30px 20px;
    background: rgba(21, 21, 32, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 128, 0.2);
}

.seo-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 0, 128, 0.1);
}

.seo-section:last-of-type {
    border-bottom: none;
}

.seo-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--dorado-lujo);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
}

.seo-section p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.seo-section strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

.seo-section a {
    color: var(--neon-rosa);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 2px 4px;
}

.seo-section a:hover {
    color: var(--dorado-lujo);
    text-shadow: 0 0 10px var(--dorado-lujo);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
}

.ventajas-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.ventajas-list li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 5px;
    margin-bottom: 8px;
}

.seo-cta {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1),
        rgba(176, 38, 255, 0.1)
    );
    border-radius: 12px;
    border: 2px solid var(--neon-rosa);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.2);
}

.cta-text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 245, 0.5);
    font-weight: 700;
}

.btn-cta-footer {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--dorado-lujo), #f59e0b);
    color: var(--negro-noche);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-footer:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 0.5);
}

.seo-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 0, 128, 0.2);
    text-align: center;
}

.seo-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 5px 0;
}

.legal-notice {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* ==================== RESPONSIVE TABLETS ==================== */
@media (min-width: 768px) {
    .distrito-header h1 {
        font-size: 36px;
    }
    
    .edificio-fachada {
        width: 240px;
        height: 380px;
    }
    
    .edificio-banner {
        height: 160px;
    }
    
    .pasillo {
        gap: 100px;
    }
    
    .camino-central {
        width: 150px;
    }
}

/* ==================== DESKTOP ==================== */
@media (min-width: 1024px) {
    .distrito-header h1 {
        font-size: 44px;
    }
    
    .edificio-fachada {
        width: 280px;
        height: 420px;
    }
    
    .edificio-banner {
        height: 180px;
    }
    
    .pasillo {
        gap: 140px;
        padding: 0 80px;
    }
    
    .camino-central {
        width: 180px;
    }
}