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

html, body {
    width: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #2E3136;
    color: #ffffff;
    /* Cambiado para permitir scroll vertical si el contenido crece, pero ocultar desbordamiento horizontal de las manchas */
    overflow-x: hidden; 
    position: relative;
}

/* MANCHAS DEGRADADAS (BLOBS) */
body::before,
body::after {
    content: "";
    position: fixed; /* Cambiado a fixed para que las manchas se queden de fondo aunque haya scroll */
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 0;
    animation: floatBlob 12s ease-in-out infinite alternate;
    pointer-events: none; /* Evita que las manchas interfieran con los clicks en la pantalla */
}

/* Mancha azul */
body::before {
    background: #0035ff;
    top: -150px;
    left: -150px;
}

/* Mancha cyan */
body::after {
    background: #00efea;
    bottom: -200px;
    right: -150px;
    animation-delay: 2s;
    mix-blend-mode: screen;
}

@keyframes floatBlob {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(30px, -20px) scale(1.08);
    }
}

/* SECCIÓN HERO */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1; /* Asegura que el contenido esté por encima de los blobs del body */
}

/* Glow adicional centrado en el Hero */
.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1; /* Detrás del texto del hero */
    pointer-events: none;
}

/* ESTRUCTURA Y TEXTOS */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.logo {
    width: 120px;
    height: auto; /* Mantiene la proporción correcta de la imagen */
    margin-bottom: 30px;
}
h1 {
    /* Aumentado un 20% (Antes el máximo era 1.5rem, ahora es 1.8rem) */
    font-size: clamp(1.1rem, 2.2vw, 1.8rem); 
    /* Interlineado ajustado de 1.2 a 1.35 para que no se peguen las líneas */
    line-height: 1.35; 
    letter-spacing: -0.5px; 
    max-width: 780px;
    margin: 0 auto 20px;
}

p {
    font-size: 1.05rem;
    /* Ajustado de 1.7 (doble espacio visual) a 1.35 (espacio sencillo equilibrado para lectura digital) */
    line-height: 1.35; 
    color: rgba(255, 255, 255, 0.72);
    max-width: 640px;
    margin: 0 auto 40px;
}

/* BOTÓN GLASSMORPHISM */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

/* Glow interno del botón */
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,53,255,0.25), rgba(0,239,234,0.18));
    opacity: 0.9;
    z-index: -1;
}

/* Estados del botón */
.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 40px rgba(0,239,234,0.12);
}

.btn:active {
    transform: translateY(0);
}
/* LISTA DE CIUDADES EN LÍNEA */
.locations-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Espacio entre la ciudad y el bullet */
    margin-bottom: 12px;
    padding: 0;
}

.locations-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
}

/* Genera los bullets personalizados de manera limpia */
.locations-list li:not(:last-child)::after {
    content: "•";
    margin-left: 20px;
    color: #00efea; /* Usa el color cyan de tus manchas para dar identidad */
    font-size: 1.2rem;
}

/* ENLACE DE CONTACTO */
.contact-email {
    display: inline-block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 35px; /* Separa el correo del botón de abajo */
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #00efea; /* Ilumina al pasar el cursor */
}
/* RESPONSIVIDAD (MOBILE) */
@media (max-width: 600px) {
    h1 {
        /* Eliminamos font-size: 2rem; para que use el nuevo tamaño reducido */
        margin-bottom: 16px;
    }

    p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    /* ... el resto de tus estilos de la media query ... */
    
}
    .logo {
        width: 120px; /* Duplicado de 60px */
        margin-bottom: 20px;
    }

    .hero {
        padding: 30px 20px;
    }
}