/* --- Header --- */

.header
{
    background-color: var(--azul);
    padding: 1rem;
}

.contenido-header
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width:768px)
{
    .contenido-header{
        flex-direction: row;
        justify-content: space-evenly;
    }
}

.logo img
{
    height: auto;
    width: 25rem;
    /* filter: contrast(135%); */
    transition: transform 500ms;
}

.logo img:hover {
    transform: scale(1.1);
    /* filter: contrast(110%); */
}

.menu
{
    display: inline-block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width:768px)
{
    .menu {
        display: flex;
        width: unset;
        flex-direction: row;
        align-items: center;
    }
}

.menu .enlace 
{
    color: var(--blanco);
    padding: 2rem;
    transition: background-color, border-radius 400ms;
    display: block;
}

.menu .enlace:hover {
    background-color: var(--naranja);
    border-radius: 2rem;
}

/*--- Wtsapp flotante*/

.logoWtsapp
{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: fixed;
    right: 0.4rem;
    bottom: 0;
    z-index: 150;
}

.logoWtsapp img
{
    width: 6rem;
    height: 6rem;
}

.logoWtsapp p
{
    background-color: var(--verde);
    padding: 1rem;
    border-radius: 2rem;
    font-weight: 900;
    color: var(--blanco);
    opacity: 0;
    transition: opacity 500ms;
}

.logoa:hover ~ p
{
    opacity: 1;
   
}

/* --- Footer ---*/
.footer
{
    background-color: var(--azul);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    color: var(--blanco);
    text-align: center;
    /* align-items: center; */
    border-top: 1px solid #afafaf;
}


@media (min-width: 992px) 
{
    .footer{
        flex-direction: row;
        text-align: unset;
        justify-content: space-evenly;
    }    
}

.logo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-footer img{
    height: auto;
    width: 32rem;
    display: inline-block;
    margin: 4rem auto;
    /* filter: contrast(135%); */
    transition: transform 500ms;
}

.logo-footer img:hover {
    transform: scale(1.1);
    /* filter: contrast(110%); */
}

@media (min-width: 992px) {
    .logo-footer img{
        margin: 0;
    }
}

.footer h3
{
    margin-bottom: 2rem;
    color: var(--blanco);
}

.footer p {
    padding: 1rem;
}

.footerContacto
{
    display: flex;
    flex-direction: column;
}

.footerLogoContacto
{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footerLogoContacto svg
{
   margin-bottom: 2rem;
}

.footerCelular {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

.footer .telefono {
    color: var(--blanco);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .footer .telefono {
        justify-content: unset;
    }
}

.footer .telefono::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3rem;
    background-image: url(../img/telefono.png);
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 1rem;
}

.footerLogoEmail {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .footerLogoEmail {
        justify-content: left;
    }
}

.footerLogoEmail svg {
    height: 3rem;
}

.footerUbicacion
{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footerLogoUbicacion
{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footerLogoUbicacion svg
{
   margin-bottom: 2rem;
}

.footerHorario
{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footerLogoHorario
{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footerLogoHorario svg
{
   margin-bottom: 2rem;
}

.footerLogoHorario h3 {
    text-align: center;
}

.coopyright
{
    text-align: center;
    color: var(--blanco);
    background-color: var(--azul);
    border-top: 1px solid var(--blanco);
    padding: 2rem;
}