/* ======================================
   ESTILOS PÁGINA EN CONSTRUCCIÓN
   NO SE SUPERPONE CON FOOTER
   ====================================== */

body.pagina-en-construccion {
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Contenedor principal centrado, con espacio suficiente */
.contenido-construccion {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem 1rem 4rem; /* Espacio abajo para no tocar el footer */
}

.contenido-construccion h1 {
    font-family: 'AlfaqixServo Semibold', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #161534;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contenido-construccion p {
    font-family: 'Batolah', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #333333;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.boton-volver {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: #161534;
    color: #FFFFFF;
    font-family: 'AlfaqixServo Semibold', sans-serif;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.boton-volver:hover {
    background-color: #2A2959;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 21, 52, 0.2);
}

/* Ajuste para móviles */
@media (max-width: 480px) {
    .contenido-construccion {
        padding: 2rem 1rem 3rem;
    }
    .contenido-construccion h1 {
        font-size: 1.8rem;
    }
    .contenido-construccion p {
        font-size: 1rem;
    }
    .boton-volver {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}
