/* Estilos para el layout principal */
html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

/* Footer */
footer {
    flex-shrink: 0;
    background-color: #272727;
    width: 100%;
}

.redes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.redes img {
    height: 30px;
    transition: transform 0.3s ease;
}

.redes img:hover {
    transform: scale(1.1);
}

footer p {
    color: white;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Estilos específicos para los horarios */
.horario p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

#imgFooter {
    width: auto;
    height: 250px;
    max-width: 100%;
    display: block;
}

#imgNosotros {
    height: 60%;
    padding: auto;
    margin: auto;
    display: flex;
    align-items: center;
    margin-top: 10%;
    margin-bottom: 0;
    ;
}

.horario h4,
.footer-contacto h4 {
    color: #aa1916;
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-contacto address {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-align: center;
}

@media (max-width: 768px) {
    #imgFooter {
        width: auto;
        height: 150px;
    }

    .horario,
    .footer-contacto {
        margin-top: 1rem;
    }

    .footer-contacto address {
        font-size: 12px;
    }

    .horario p {
        font-size: 14px;
    }
}