html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #0C2340; /* Azul corporativo */
    padding: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

.main {
    flex-grow: 1; /* Esto asegura que el contenido principal ocupe espacio antes del footer */
    margin: 50px auto;
    padding-bottom: 50px; /* Añade espacio para evitar que el footer bloquee el botón */
}

.construction-message {
    margin: 20px auto;
}

.construction-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
    color: #004080;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.redirect-button {
    margin: 20px auto;
}

.button-image {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
    z-index: 10;
}

.button-image:hover {
    transform: scale(1.1);
}

.footer {
    background-color: #0C2340;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    position: relative; /* Aseguramos que no sea fixed ni absolute */
    margin-top: 20px; /* Añade un espacio entre el contenido principal y el footer */
}
