/* --- ESTILOS GENERALES --- */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #fff0f5; /* Fondo rosado/cálido muy suave */
    background-image: url('../img/fondo.png'); /* Usa tu fondo si quieres la misma textura */
    color: #4a4a4a;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ocupa toda la altura de la pantalla */
    box-sizing: border-box;
}

h1, .btn-home {
    font-family: 'Fredoka', sans-serif;
}

/* --- CONTENEDOR PRINCIPAL --- */
.construccion-container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra suave para darle profundidad */
    max-width: 800px;
    width: 100%;
    text-align: center;
    border: 4px solid #eee;
}

/* --- IMAGEN --- */
.construccion-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- TEXTOS --- */
.construccion-container h1 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-top: 0;
    margin-bottom: 15px;
}

.construccion-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
    padding: 0 20px;
}

/* --- BOTÓN --- */
.btn-home {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: 0 6px 0 #d43f3f; /* Estilo 3D como en tu botón principal */
}

.btn-home:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #d43f3f; /* Efecto de pulsar el botón */
}

/* --- RESPONSIVE PARA MÓVILES --- */
@media (max-width: 600px) {
    .construccion-container {
        padding: 25px 15px;
    }
    
    .construccion-container h1 {
        font-size: 2rem;
    }
    
    .construccion-container p {
        font-size: 1.1rem;
    }
}