/* --- ESTILOS GENERALES (Sin cambios) --- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; 
}

body {
    background-color: #d56c8a;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
	font-family: 'Quicksand', sans-serif;
}

.logo-container {
    text-align: center;
    position: relative; 
    z-index: 10;
    width: 90%;
}

.logo {
    width: 70%;
    max-width: 350px;
    height: auto;
}

#construction-text {
	position: absolute;
    color: rgba(255,255,255,1.00);
    font-size: 20px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	right: 0;
	left: 0;
	top:250px;
}


/* --- EFECTO DE FOCO DE LUZ (MODIFICADO PARA SUTILEZA) --- */

/* Estilo base para ambas luces */
.spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff, transparent 80%);
    /* Aumentamos el desenfoque para mayor suavidad */
    filter: blur(120px); 
    z-index: 1;
}

/* Luz 1: Movimiento lento y opacidad muy sutil */
.spotlight {
    /* Reducimos la opacidad */
    opacity: 0.15; 
    animation: moveLight1 55s infinite alternate ease-in-out;
}

/* Luz 2: Opacidad aún más baja y movimiento desincronizado */
.spotlight-2 {
    /* Reducimos la opacidad */
    opacity: 0.12; 
    animation: moveLight2 40s infinite alternate ease-in-out;
    animation-delay: -10s;
}

/* Animación 1: Vaga por los bordes de la pantalla (centro siempre fuera) */
@keyframes moveLight1 {
    0%   { transform: translate(-70vw, -65vh); } /* Arriba-Izquierda */
    25%  { transform: translate(60vw, -70vh); }  /* Arriba-Derecha */
    50%  { transform: translate(65vw, 60vh); }   /* Abajo-Derecha */
    75%  { transform: translate(-60vw, 70vh); }   /* Abajo-Izquierda */
    100% { transform: translate(-70vw, -65vh); } /* Vuelve al inicio */
}

/* Animación 2: Vaga en un recorrido diferente (centro siempre fuera) */
@keyframes moveLight2 {
    0%   { transform: translate(65vw, -60vh); }   /* Arriba-Derecha */
    25%  { transform: translate(70vw, 70vh); }   /* Abajo-Derecha */
    50%  { transform: translate(-60vw, 65vh); }   /* Abajo-Izquierda */
    75%  { transform: translate(-70vw, -60vh); }  /* Arriba-Izquierda */
    100% { transform: translate(65vw, -60vh); }   /* Vuelve al inicio */
}


/* --- AJUSTES PARA MÓVILES (Sin cambios) --- */
@media (max-width: 600px) {
    .logo {
      width: 80%;
    }
    #construction-text {
        font-size: 16px;
        margin-top: -25px;
    }
}