﻿/*GENERALES*/
/********************************************************************/
/********************************************************************/
* {
    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;
}

form {
    width: 100%;
}

.fondoMovilMenu {
    display: none;
}

/********************************************************************/
/********************************************************************/


/*ESTILOS CABECERA*/
/********************************************************************/
/********************************************************************/

.headerContacto {
    background-color: white;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: end;
    width: 80%;
    height: 60px;
}

.cajaBuscarProducto {
    position: relative;
    display: flex;
    width: 300px;
}

.buscarProducto {
    justify-content: left;
    font-size: 18px;
    height: 35px;
    width: 100%;
    border-radius: 7px;
    margin-right: 20px;
    background-color: #EDEEF2;
    padding-left: 10px;
    color: #315a9c;
}

.cajaBoton {
    display: flex;
    position: absolute;
    left: 250px;
    top: 10px;
}

.botonBuscar {
    display: flex;
    font-size: 20px;
    border: 0px;
    background-color: #EDEEF2;
    cursor: pointer;
}

.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;
    }
}


/*BARRA DE MENÚ*/
/********************************************************************/
/********************************************************************/

.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;
    z-index: 100;
}

    .logo img {
        width: 160px;
        margin-left: -80px;
        margin-right: 30px;
    }


/*COMPORTAMIENTO MENÚ COLGANTES*/
/********************************************************************/
/********************************************************************/
.menu > ul {
    display: flex;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 101;
    position: relative;
}

    .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: #f7941e;
        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: #5D6D7E;
    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: #5D6D7E;
        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 FOODER **************************/

footer {
    bottom: 0px;
    display: block;
    width: 100%;
    margin-top: 50px;
    background-color: #315a9c;
}

.marginFooter {
    display: flex;
    width: 80%;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}

#logoTipoFooder {
    width: 170px;
    box-shadow: 0px 0px 35px white;
}

.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;
    }
