* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    background-color: rgba(255, 255, 255, 0.5);
    font-family: sans-serif;
    position: relative;
}

.fondoMovilMenu {
    display: none;
}


.headerContacto {
    background-color: white;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: end;
    width: 80%;
    height: 60px;
}

.buscarProducto {
    font-size: 60px;
    height: 50px;
}

.headerContacto img {
    width: 21px;
    height: 21px;
    margin-right: 5px;
}

.headerContacto a {
    text-decoration: none;
    font-size: small;
    font-weight: 500;
    color: black;
    padding-right: 20px;
}

@media (hover: hover) {
    .headerContacto a:hover {
        color: #470909;
        font-weight: 500;
    }
}

.contenedorMenu {
    display: flex;
    background-color: #315a9c;
    width: 100%;
    height: 58px;
}

.contenedorElementosMenu {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}


    .logo img {
        width: 140px;
        margin-right: 50px;
    }

.menu > ul {
    display: flex;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

    .menu > ul > li {
        position: relative;
        display: flex;
        height: 100%;
    }

        .menu > ul > li > a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-weight: 500;
            padding-left: 20px;
            padding-right: 20px;
            height: 100%;
            transition: all 300ms ease;
        }

@media (hover: hover) {
    .menu > ul > li > a:hover {
        transform: scale(1.05);
        background-color: #5D6D7E;
        box-shadow: 0px, 0px, 10px, 0px rgba(0, 0, 0, 0.8);
    }
}

.menu > ul > li ul {
    position: absolute;
    top: 80px;
    left: 0px;
    width: 220px;
    display: flex;
    flex-direction: column;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding: 20px;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease;
}

.menu > ul > li:hover ul {
    top: 58px;
    visibility: visible;
    opacity: 1;
}

.menu > ul > li ul:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: -12px;
    left: 20px;
}

.menu > ul > li ul li a {
    display: block;
    color: #315a9c;
    padding: 6px;
    margin-left: -28px;
    margin-right: -28px;
    padding-left: 23px;
    margin-top: 10px;
    font-size: 1em;
    transition: all 300ms ease;
}

@media (hover: hover) {
    .menu > ul > li ul li a:hover {
        background: #315a9c;
        color: white;
        transform: scale(1.1);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    }
}

#menu-bar {
    display: none;
}

#icoMenu {
    display: none;
}

/******************************************************************/
/******************** SECCIÓN SUCURSALES **************************/
/******************************************************************/
.contenedorBody {
    display: flex;
    background:white;
    width: 100%;
    height: 68vh;
}

.contenedorImagen {
    display: flex;
    width: 40%;
    justify-content: center;
    align-items:center;
}

.imagenQuienesSomos{
    width:60%;
}
.contenedorTexto {
    margin-top: 35px;
    width: 60%;
    overflow: hidden;
    overflow-y: auto;
}

.tituloQuienesSomos {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
    color:#222222;
}

.textoQuienesSomos {
    width:80%;
    color: #666666;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align:justify;
}

/******************************************************************/
/******************************************************************/
/******************************************************************/
/**************************************************************/
/******************** SECCIÓN FOODER **************************/
footer {
    bottom: 0px;
    display: block;
    width: 100%;
    background-color: #315a9c;
}

.marginFooter {
    display: flex;
    width: 80%;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}

#logoTipoFooder {
    width: 170px;
}

.contenedorFooter {
    display: flex;
    color: rgb(233, 224, 224);
}

    .contenedorFooter li {
        padding: 8px;
        list-style: none;
    }

    .contenedorFooter a {
        text-decoration: none;
        color: rgb(233, 224, 224);
    }

@media (hover: hover) {
    .contenedorFooter a:hover {
        text-decoration: none;
        font-weight: 500;
        color: rgb(224, 55, 55);
    }
}

.pieFooter {
    width: 80%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

    .pieFooter #textPieFooter {
        display: flex;
        margin-top: 20px;
        border-top: 2px solid;
        border-bottom: 2px solid;
        color: rgb(233, 224, 224);
        width: 40%;
        padding: 30px;
    }

#textoPieFooter {
    margin-top: 20px;
    padding-bottom: 20px;
    color: rgb(233, 224, 224);
    font-size: 13px;
}

.pieFooter img {
    width: 25px;
    margin-right: 20px;
}

#imagenesFooder {
    display: block;
    text-align: right;
}

#iconosRedesSociales img {
    width: 50px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

#datoTelefono {
    display: flex;
    margin-top: 20px;
    font-size: 18px;
    color: rgb(233, 224, 224);
    text-align: center;
}

    #datoTelefono img {
        margin-top: -10px;
        width: 30px;
        margin-right: 20px;
    }




/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/******************** SECCIÓN CONTROL MSJ MODAL **************************/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111111bd;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s .4s;
    --trasform: translateY(-100vh);
    --transition: transform .8s;
    z-index: 101;
}


.modal--show {
    opacity: 1;
    pointer-events: unset;
    transition: opacity .6s;
    --trasform: translateY(0);
    --transition: transform .8s .3s;
}

.modal_container {
    margin: auto;
    width: 90%;
    max-width: 600px;
    height: 240px;
    max-height: 90%;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 0em 2.5em 3em 2.5em;
    transform: var(--trasform);
    transition: var(--transition);
}

.tituloModal {
    display: flex;
    margin: -0.2em -2.8em 20px -2.8em;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 35px;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    background-color: #315a9c;
}

.textoMjs {
    display: flex;
    padding: 2em 0 2em 0;
    font-size: 1.1em;
    text-align: justify;
}


    .textoMjs i {
        margin-right: 10px;
        font-size: 1.2em;
    }


.btnCerrarModal {
    display: flex;
    bottom: 0;
    justify-content: center;
    align-items: center;
    background-color: #315a9c;
    color: white;
    width: 40%;
    height: 40px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 10px;
    margin: 15px auto 0 auto;
    font-size: 1.1em;
    transition: background-color .3s;
}

@media (hover: hover) {
    .btnCerrarModal:hover {
        background-color: #5D6D7E;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    }
}


/**************************************************************************/