@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(formulario.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    font-family: 'Open Sans', sans-serif;
}

header {
    width: 100%;
    height: 50px;
    background: #00304E;
    color: #fff;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor    {
    width: 98%;
    margin: auto;
}

header .contenedor p {
    float: left;
    font-size: 1.35em;    
}

header .contenedor h1 {
    float: left;
    font-size: 1.35em;
    padding: 5px;
    padding-bottom: 5px;
}

header .contenedor {
    display: table;
}

section {
    width: 100%;
    margin-bottom: 25px; 
}

#bienvenidos {
    text-align: center;
    color: darkorange;
}

#bienvenidos p {
    text-align: left;
    padding: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #333;
}

footer {
    background: #ff8000;    
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
    color: aliceblue;

}

.copy {
    font-size: 20px;
    margin-top: 20px;
    
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 28px;
    margin-top: 20px;
}

.sociales a {
    color: #fff;
    text-decoration: none;
}

@media (min-width:768px) {
    .sociales {
        width: auto;
    }
    
    footer .contenedor {
        justify-content: space-between;
    }
}

@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
}