/* Importar una fuente de Google Fonts (opcional) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4; /* Un color de fondo suave */
    color: #333; /* Color de texto principal */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ocupa el 100% de la altura de la ventana */
    margin: 0;
    text-align: center;
}

.container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

.logo {
    width: 150px; /* Ajusta el tamaño de tu logo */
    margin-bottom: 20px;
}

h1 {
    color: #9d2148; /* Color de acento azul */
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.volveremos {
    font-size: 1.3em;
    font-weight: 700;
    color: #9d2148; /* Color de acento verde para el mensaje principal */
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.contacto a {
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: color 0.3s;
}

.contacto a:hover {
    color: #0056b3;
}

.footer {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #6c757d;
}

/* Opcional: Estilo para un icono de herramientas/engranaje si lo usas */
/*
.icon-mantenimiento::before {
    content: '\2699'; 
    font-size: 4em;
    display: block;
    margin-bottom: 20px;
    color: #ffc107; 
}
*/

/* ... código CSS anterior ... */

.actions {
    margin-top: 40px;
    margin-bottom: 20px;
}

.home-button {
    display: inline-block;
    background-color: #9d2148; /* Color amarillo/naranja de acento */
    color: #fff; /* Color de texto oscuro para contraste */
    padding: 12px 25px;
    text-decoration: none; /* Quita el subrayado */
    border-radius: 5px;
    font-weight: 700;
    font-size: 1em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.home-button:hover {
    background-color: #9d2148; /* Un tono más oscuro al pasar el ratón */
    color: #fff; /* Opcional: Cambiar color de texto a blanco */
}

/* ... código CSS posterior ... */