/* Importa la fuente Roboto de Google Fonts (usada en el HTML) */
/* Fuente: https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap */

:root {
    --primary-color: #0056b3; /* Azul corporativo para MiBus */
    --secondary-color: #f0f0f0; /* Fondo claro */
    --text-color: #333;
    --light-text-color: #666;
    --white: #ffffff;
}

/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 40px 30px;
}

/* Encabezado y Logo */
header {
    margin-bottom: 30px;
}

.logo {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

/* Contenido Principal */
.content h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--light-text-color);
    margin-bottom: 15px;
}

.icon {
    font-size: 4em;
    display: block;
    margin-bottom: 20px;
    animation: bounce 2s infinite; /* Animación simple para el ícono */
}

/* Animación de "rebote" */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pie de página */
footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: var(--light-text-color);
}

.countdown p {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2em;
}