@import url(menu.css);
@import url(banner.css);
@import url(productos.css);
@import url(promociones.css);
@import url(tabla.css);
@import url(login/login.css);
@import url(userpanel.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: arial;
    
}


header{
    width: 100%;
    height: 80px;
    background:black ;
    color: white;
    position: fixed; /*para fijar el encabezado*/
    top: 0;
    left: 0;
    z-index: 100;/*para que tape los demas elementos*/
}

header img{
    
    height: 80px; /*imagen del header*/
   
}
.contenedor {
    width: 98%;
    margin: auto;
}

h1{
    float: left;
    
}

header .contenedor{
    display: table;
}

section{
    width:100%;
    margin-bottom: 25px;
}

section #user-login{
    
}

footer {
    width: 100%;
    height: 100px;
    
    
}

footer .contenedor{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
}

#maps iframe{
   width: 100%;
   padding: 10px ; 
}

#maps p{
    font-weight: bold;
    padding: 20px ;
}
#maps h3{
    text-align: center;
}

.copy {
    font-size: 20px;
    color: black;
}

.sociales{
    width: 100%;
    text-align: center;
    font-size: 28px;
    
}

.sociales a {
    color: black;
    text-decoration: none;
}

.fijar {
    margin-top:-135px;
    color:white;
}

@media(min-width:1024px){
    
    .contenedor{
        width: 1000px;
    }
    header{
        height: 100px
    }
    header img{
        height: 100px;
        width: 330px;
    }
    
}
@media(min-width:768px){
    .sociales{
        width: auto;
    }
    
    footer .contenedor{
        justify-content: space-between;
    }
}