body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5; /* Fondo gris claro */
    color: #333; /* Texto principal oscuro */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background-color: #ffffff; /* Contenedor blanco */
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #007bff; /* Color primario azul */
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #666;
}

/* Barra de Progreso */
.progress-bar {
    background-color: #e9ecef;
    border-radius: 5px;
    height: 25px;
    margin: 20px auto;
    width: 80%;
    overflow: hidden;
}

.progress {
    background-color: #28a745; /* Color de progreso verde */
    height: 100%;
    width: 0; /* Esto será modificado en el HTML, p. ej. width: 75%; */
    transition: width 0.4s ease-in-out;
    border-radius: 5px;
    text-align: center;
    line-height: 25px;
    color: white;
    font-weight: bold;
}

.eta {
    margin-top: 15px;
    font-size: 1.05em;
    color: #007bff;
}

.contact-text {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #444;
}

.contact-link {
    display: inline-block;
    color: #ffffff;
    background-color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.contact-link:hover {
    background-color: #0056b3;
}

/* Enlaces Sociales */
.social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 400;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Pie de Página */
footer {
    margin-top: 30px;
    padding: 10px;
    color: #999;
    font-size: 0.85em;
}
