@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(adendas.css);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #f2f2f2;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
header {
    width: 100%;
    height: 50px;
    background: #fff;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.contenedor {
    width: 98%;
    margin: auto;
}
h1 {
    float: left;
}
header .contenedor {
    display: table;
}
section {
    width: 100%;
    margin-bottom: 25px;
}
#bienvenidos {
    text-align: center;
}
footer .contenedor {
    text-align: center;
    margin-bottom: 5px;
    color: #111;
    text-decoration: none;
}
.img__footer {
    width: 25px;
    height: 25px;
    margin-top: 5px;
}
.url {
    text-decoration: none;
    color: #404446;
    font-size: 1.1em;
    text-align: center;
}
.tel {
    text-decoration: none;
    color: #404446;
    font-size: 1.1em;
    font-style: bold;
    font-weight: bolder;
}
.whats {
    text-decoration: none;
    color: #006400;
    font-size: 1.5em;
    font-weight: bolder;
    margin: 10px 0 8px 0;
}
.url:hover {
    color: #999;
}
.copy {
    font-size: .7em;
    color: #666
}
@media (min-width: 1024px) {
    .contenedor {
        width: 1000px;
    }
}