@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url(menu.css);
@import url(banner.css);

@import url(info.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
}

header {
    width: 100%;
    height: 50px;
    background: #333;
    color: #fff;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}
header .contenedor {
    display: table;
}

section {
    width: 100%;
   
}

.footer {
    background-color: #fff;
    width: 100%;
    height: 70px;
    bottom: 0;
    position: fixed;
    color: #000;
    
    
    
}

.copy {
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
    font-weight: bold;
}

.sociales {
    width: 100%;
    text-align:center;
    font-size: 16px;

}

.sociales a {
    color: #333;
    text-decoration: none;
}


@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
}