body{
    margin: 0px;
}

header {
    background-color: rgb(255, 255, 255);
    height: 50px;
}

.contenedor{
    width: 65rem;
    margin: auto;
}

.info_wrapper{
    display: flex;
    align-items: center;
    height: 100%;
}

.logo_div {
    flex: 8;
    height: 100%;
    display: flex;
}

.contacto_div{
    flex: 2;
    display: grid;
    place-items: center;
    height: 100%;
    width: 100%;
}

.contacto_div a{
    background-color: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: medium;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    color: blueviolet;
    transition: all 500ms ease;   
}

.contacto_div:hover > a {
    opacity: 1;
    background-color: blueviolet;
    color: white;
}

.logo {
    width: 10rem;
    height: 2rem;
    margin: auto 0px;
    margin-right: 15px;
}

.img_fondo {
    height: 16rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.img_fondo img {
    width: 100%;
}

.nosotros_wrapper {
    position: relative;
    bottom: 8rem;
}

.miniaturas {
    height: 16rem;
    background-color: white;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.miniaturas img {
    width: 95%;
    height: auto;
    object-fit: contain;
}

.sombra {
    border-radius: 20px;
    box-shadow: 3px 3px 10px 2px rgb(149, 149, 149);
}

.miniatura {
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.miniatura > * {
    margin: auto;
}

.miniatura img {
    width: 160;
    height: 160px;
    border-radius: 50%;
}

.nosotros {
    display: flex;
    margin-top: 20px;
}

.nosotros p{
    font-size: 20px;
}

.informacion {
    width: 100%;
}

/*.galeria {
    width: 30%;
    display: flex;
    justify-content: center;
}

.galeria img {
    height: 230px;
    margin: auto;
}*/

.categorias {
    display: flex;
    flex-direction: column;
}

.categoria {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.categoria img {
    height: 200px;
}

.producto {
    position: relative;
}

.producto .capa {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0px;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 500ms ease-out;
    opacity: 0;
}

.producto:hover > .capa {
    opacity: 1;
}

.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.regleta_contacto {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.regleta_contacto img{
    flex: 1;
    height: 32px;
}
.regleta_contacto .informacion_contacto{
    flex: 2;
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
}

.regleta_contacto .informacion_contacto img{
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
