/*Fuente importada*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans',sans-serif;
}
header{
    width: 100%;
    height: 50px;
    background: #333;
    color:#fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
/*Contenedor*/
.contenedor{
    width: 98%;
    margin: auto;
    
}
@media (min-width:1024px){
    .contenedor{
        width: 1000px;
    }
}

h1{
    float: left;
}
/*Menu*/
#menu-bar{
    display:none;
}
header label{
    float: right;
    font-size: 28px;
    margin: 6px 0;
    cursor: pointer;
}
.menu{
    position: absolute;
    top:50px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(51, 51, 51, 0.9);
    transition: all 0.5s;
    transform:translateX(-100%) ;
}
header .contenedor{
    display: table;
}
.menu a{
    display: block;
    color: #fff;
    height: 50px;
    text-decoration: none;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.5);

}
.menu a:hover{
    background:rgba(255,255,255,0.3) ;    

}
#menu-bar:checked ~ .menu{
    transform:translateX(0%) ;
}

@media (min-width:1024px){
    .menu{
        position: static;
        width: auto;
        height: auto;
        transform:translateX(0%);
        float: right;
        display: flex;
    }
    header label {
        display: none;
    }

}
/*Banner*/
section{
    width: 100%;
    margin-bottom: 25px;
}
#banner {
    margin-top:50px;
    position: relative;
}
#banner img{
    width: 100%;
    height: 100%;
}
#banner .contenedor{
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translateX(-50%) translateY(-50%);
    color: #fff;
    background: rgba(51, 51, 51, 0.3);
    
}
#banner h2{
    font-size: 28px;
    text-align: center;
    
}

#banner div a:hover{
    background: rgba(51, 51, 51, 0.5);
}

@media (min-width:480px){
    #banner h2{
        font-size: 40px;
    }
    #banner a{
        margin-top: 25px;
        
    }
}
@media (min-width:768px){
    #banner{
        height: 300px;
        overflow: hidden;
    }
    #banner img {
        height: auto;
        margin-top: -100px;
    }
}
@media (min-width:1024px){
    
    #banner img {
        
        margin-top: -200px;
    }
}
/*Novedades */
#ubicacion{
    text-align: center;
}

#productos {
    background: #333;
    color: #fff;
    text-align: center;
}
#productos .contenedor{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#productos h3 {
    font-size: 98%;
    margin-left: 6%;
    margin-right: 6%;
}
.info{
    margin:20px;
}
.info a img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #fff;
}

@media (min-width:480px){
    .info{
        width: 40%;
    }
}
@media (min-width:1024px){
    .info{
        width: auto;
    }
}
/*Footer*/
.copy{
    font-size:20px;
    text-align: center;

}
.sociales {
    width: 100%;
    text-align: center;
    font-size: 28px;
}
.sociales a{
    color:#333;
    text-decoration:none;
}
@media (min-width:768px){
    .sociales{
        width: auto;
    }
    footer .contenedor{
        justify-content: space-between;
    }
}




