/* Restablecemos los márgenes por defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* Un color de fondo crema muy suave, similar al fondo de tu logo */
    background-color: #f5f3eb; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #fdfbf7;
    max-width: 750px;
    width: 100%;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); /* Sombra suave para darle profundidad */
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    /* Opcional: redondear las esquinas de la imagen si es muy cuadrada */
    border-radius: 10px; 
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.texto-oscuro {
    color: #333333;
}

/* Efecto degradado para la palabra "construcción" */
.texto-color {
    background: linear-gradient(90deg, #8E24AA, #E91E63, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #555555;
    line-height: 1.6;
    font-size: 1.1em;
    margin-bottom: 25px;
    font-weight: 300;
}

.contacto {
    margin-top: 30px;
}

/* Estilo para el correo electrónico */
.enlace-correo {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    background: linear-gradient(90deg, #9C27B0, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid #E91E63;
    transition: opacity 0.3s ease;
}

.enlace-correo:hover {
    opacity: 0.7;
}

.subtexto {
    font-weight: 600;
    margin-top: 20px;
    color: #333;
}

/* Línea separadora en la parte inferior */
.separador {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 20px 0;
}

.separador hr {
    flex-grow: 1;
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 15px;
}

footer {
    font-size: 0.85em;
    color: #888888;
    font-weight: 300;
}

/* Adaptación para teléfonos móviles */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }
    .container {
        padding: 30px 20px;
    }
}