
@import url('https://fonts.googleapis.com/css?family=Montserrat|Pacifico&display=swap');

*{
    box-sizing: border-box;
}


body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/*--------Estilos Base---------*/

img{
    display: block;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}

.container{
    width: 85%;
    margin:auto;

   
}



.container--flex{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items:center;

}


/*-------Estilos Header------*/


.main-header{
    width: 100%;
}

.Nom_E{
    font-size: 2em;
    color: #383838;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.LogoEmpresa{

    padding: 1%;
    max-width: 22%;
    margin-right: 0;    
}



/*-----------Estilos Menu-----------*/


.main-nav{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2000;
    padding: 5px;
    background: rgba(0,0,0,0.85);
}

.icon-menu{
    display: block;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
  
}

.social-icon {
    display:flex;
    justify-content: space-between;
    
}

.social-icon p{
    margin-right: 10px;
    color: white;
    justify-content: space-between;
}

.social-icon [class*="icon-"] {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.85);
   
}

.social-icon__link{
    text-decoration: none;
    font-size: 1.8em;
    
}

.menu{
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;   
    background: rgba(0,0,0,0.85);
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height.2s linear;
    font-size: 0.9em;
}

.menu__link{
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}

.menu__link:hover{

    background: #c8b015;

}

.menu__link--select{
    background: #c8b015;

}

.mostrar {  
    height: auto;
    
}


.menu__item{
    
    margin: auto;
}


/*------------Botones Redes Sociales----------*/


.buttons-network {
  position: fixed;
  top: 33%;
  left: 3%;
  z-index: 10000;
}

.buttons-network__button {
  width: 60px;
  height: 60px;
  display: block;
  box-shadow: 0 3px 6px rgb(0, 0, 0, 0.9);
  border-radius: 10px;
  background:white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.buttons-network__button p {
  display: none;
}

.buttons-network__button:hover > p {
  display: block;
}

.buttons-network__button:hover {
  width: 100%;
  padding: 0 10px;
}

.buttons-network__button:nth-child(1)> i {
  color: #4267b2;
}

.buttons-network__button:nth-child(2)> i {
  color: #0e76a8;
}

.buttons-network__button:nth-child(1):hover {
  color: #4267b2;
}

.buttons-network__button:nth-child(2):hover {
  color: #0e76a8;
}




/*------------Estilos Catalogo-----------------*/

.Catalogo .column{
    display: block;
    margin: 1%;
    margin-top: 7%;
    text-align: center;
    border: 1px solid #e1e1e1;
    padding: 3%;;
    
}


.Catalogo__img{
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
    border-radius: 2%;
    display: block;
    height: 330px;
    width: 240px;
    object-fit: fill;
}

.Catalogo__img:hover{
    transform: scale(1.05);
}

.Catalogo__title{
    font-size: 1em;
    padding-top: 10px;
    font-weight: bold;

}



 .column.column--50{
        width: 30%;
    }


/*-------------- Estilos Footer------------*/

.main-footer{

    background: #222;
    color: white;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: .9em;
}

.copy{
    text-align: center;
    margin: auto;
    margin-top: 15px;
}

.main-footer [class*="icon-"]{
    color: white;
    text-decoration: none;
}

.main-footer [class*="icon-"]:before{
    position: relative;
    top: 3px;
    right: 5px;
}

.column--33{
        width: 32%;
    }


.main-footer .container--flex{
        align-items: flex-start;
    }



/*------------ Estilos Modal -------------------*/

.modal{
    width: 100%;
    min-height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000000;
    display: none;
}

.modal__content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.modal__img{
    width: 40%;
}


.modal__boton{
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    cursor: pointer;
    font-weight: bold;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #f0d435;
    font-size: 2.2em;
    text-align: center;
    border-radius: 50%;
    font-family: monospace;
    
}

.modal--open{
    display: block;
}







/*------------ Estilos responsive --------------*/


@media(max-width: 1500px){
    
    
.Nom_E{
  font-size: 1.9em;

}
    


.LogoEmpresa{  
  max-width: 23%; 
    
}
    
    
.menu a{

    font-size: 0.7rem;
}
      
    
.buttons-network {
  top: 25%;
  left: 3%;
}

.buttons-network__button {
  width: 55px;
  height: 55px;
  font-size: 21px;

}
   
    
    
}








@media(max-width: 1300px){
    
.Nom_E{
   font-size: 1.7em;

}
    
    
.menu a{

    font-size: 0.6rem;
}
    

   
    
.buttons-network {
  top: 23%;
  left: 2%;
}

.buttons-network__button {
  width: 52px;
  height: 52px;
  font-size: 20px;

}
    
       
    
 .column.column--50{
    width: 48%;
}
    
    
.Catalogo__img{
    height: 310px;
    width: 220px;
    object-fit: fill;
    align-content: center;
    margin: auto;

 }
    
.Catalogo__title{
    font-size: .9em;
    padding-top: 10px;
    padding-bottom: 10px;
    
}
    
    
.main-footer{

    font-size: .8em;
}
     
    
}






@media(min-width: 1100px){

    .main-nav{
        padding: 0;

    }
    

    .icon-menu{
        display: none;
    }
    
    .menu{
        position: static;
        display: flex;
        height: auto;
        width: auto;
    }
    
    .menu__link{
        padding: 20px;
    }
    
  
    
}







@media(max-width: 1100px){

.menu a{

    font-size: 0.8rem;
}
    
    
}







@media(max-width: 850px) {

    .Nom_E{
    font-size: 1.6em;

}

    .buttons-network {
       position: fixed;
       top: 22%;
       left: 3%;
       z-index: 10000;
    }

    .buttons-network__button {
       width: 55px;
       height: 55px;
       font-size: 22px;
       
    }
    
    .buttons-network__button:hover > p {
       display: none;
    }
    

    
    .column.column--50{
        width: 48%;
     
    }


    .Catalogo__img{
        height: 290px;
        width: 190px;
        object-fit: fill;
        align-content: center;
        margin: auto;

    }
    
    .Catalogo__title{
       font-size: .8em;
       padding-top: 10px;
       padding-bottom: 10px;
    
    }
    

    .main-footer{
       font-size: .8em;
    }
    
    
    .column--33{
        width: 100%;
        padding: 3%;
    }
    
    .modal__img{
        width: 70%;
    }
    
    
    .modal__boton{
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 2em;
    
}
    
         
}



@media(max-width: 620px) {

.Nom_E{
    font-size: 1.4em;
    margin: 3%;
    width: 100%;

}
    
.LogoEmpresa{  
    max-width: 35%; 
    
}
    
    
.buttons-network {
       position: fixed;
       top: 22%;
       left: 3%;
       z-index: 10000;
    }

    .buttons-network__button {
       width: 55px;
       height: 55px;
       font-size: 21px;
       
    }
    
    .buttons-network__button:hover > p {
       display: none;
    }
    

     
    
.column.column--50{
    width: 100%;
}


.Catalogo__img{
    height: 290px;
    width: 190px;
    object-fit: fill;
    align-content: center;
    margin: auto;

}
    
.Catalogo__title{
    font-size: .8em;
    padding-top: 10px;
    padding-bottom: 10px;
    
}
    
    
.main-footer{
    font-size: .8em;
}
    
    
.column--33{
    width: 100%;
    padding: 3%;
}
    
    
.modal__img{
    width: 80%;
}
    
    
.modal__boton{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2em;
    
}
    
         
}




@media screen and (max-width:430px){
    
.container--flex {
    display:block;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
    
.Nom_E{
    font-size: 1.5em;
    padding-bottom: 5%;
    padding-top: 5%;
    text-align: center;

}
    
.LogoEmpresa{
    
   display: none;
      
}
    

    
    
.buttons-network {
  top: 25%;
  left: 3%;

}

.buttons-network__button {
  width: 50px;
  height: 50px;
  font-size: 20px;

}
    
.buttons-network__button:hover > p {
  display: none;
}
    
 
    
.column.column--50{
    width: 100%;
}


.Catalogo__img{
    height: 260px;
    width: 170px;
    object-fit: fill;
    align-content: center;
    margin: auto;

}
    
.Catalogo__title{
    font-size: .8em;
    padding-top: 10px;
    padding-bottom: 10px;
    
}

    
.main-footer{
    font-size: .7em;
}
    
    
.column--33{
    width: 100%;
    padding: 3%;
}
    
    
.modal__img{
    width: 85%;
}
    
    
.modal__boton{
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 2em;
    
}
    
    
}
