@import url('https://fonts.googleapis.com/css?family=Hammersmith+One');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
* {
  box-sizing: border-box;
}
img {
    display: block;
    max-width: 100%;
}
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #FFF8E9;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Hammersmith One', sans-serif;
}
body,td,th {
	font-family: "Open Sans", sans-serif;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
.section__titulo {
    text-align: center;
    font-size: 35px;
    color: #FBA919;
    }
.contenedor {
    margin: auto;
    width: 98%;
}
.anuncios {
    background: #E0E0E0;
}
/*----------Estilos del header------------*/
.header {
    height: 60px;
}
.header .contenedor {
    display: flex;
    justify-content: space-between;
}
.logo, .icon-menu {
    margin: 5px;
}
.icon-menu {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 30px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 45px;
    border-radius: 5px;
    margin-left: auto;
    cursor: pointer;
}
/*----------Estilos del menu-----------*/
.nav {
    position: absolute;
    top: 90px;
    left: -100%;
    width: 100%;
    transition: all 0.4s;
}
.menu {
    list-style: none;
    padding: 0;
    margin: 0;    
}
.menu__link {
    display: block;
    padding: 15px;
    background: rgba(251, 169, 25, 0.96);
    text-decoration: none;
    color: #fff;
}
.menu__link:hover, .select {
    background: white;
    color: #FBA919;
}
.mostrar {
    left: 0;
}

/*-----------Estilos del banner----------*/
.banner {
    margin-top: -60px;
    position: relative;
    z-index: -1000;
    margin-bottom: 10px;
}
.banner .contenedor {
   position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    text-align: center;
}
.banner__txt {
    display: none;
}

/*-----------Estilos de info----------*/
.contenido {
    
}
.contenido [class^="icon-"]{
    text-decoration: none;
    font-size: 17px;
}
.info__columna {
    background: #d69625;
    color: #fff;
    padding: 15px;
    margin-bottom: 10px;
}
.info__link {
    color: #fff;
    text-decoration: none;
}
.contenido-central  {
    background: #fff;
    padding: 10px;
    }

/*----------Estilos mas info----------*/

.masinfo__columna {
    position: relative;
    margin-bottom: 10px;
}
.masinfo__descripcion {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 60%;
    height: 100%;
    padding: 5px;
}
.masinfo__titulo {
    font-size: 25px;
    margin: 5px 0;
}
.masinfo__img {
    width: 100%;
}
/*-----------Estilos de footer-----------*/ 

.footer {
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;    
}
.footer .social [class^="icon-"] {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 30px;
    padding: 10px;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 40px;
}

/*-----------Estilos Responsive-----------*/

@media(min-width:480px) {
.logo {
    font-size: 40px;
    }
.banner__titulo {
    font-size: 30px;
    margin: 5px 0;
    }
.banner__txt {
    display: block;
    font-size: 18px;
    margin: 7px 0;
    }
.info, .masinfo {
    display: flex;
    justify-content: space-between;
    margin-top: -40px;
    }
.contenido {
    background: #fff;
    }
.contenido-central  {
    margin-top: -40px;
    padding: 10px;
    }

.info__columna {
     width: 32%;
    }
.info__titulo {
    font-size: 30px;
    margin: 5px 0;
    }
.section__titulo {
    width: 100%;    
    }
.masinfo {
    flex-wrap: wrap;
    margin-top: 0;
    }
.masinfo__columna {
     width: 49%;   
    }
.footer .social [class^="icon-"]{
 margin: 0 10px;       
    }
}
@media(min-width:768px){
.banner__titulo {
     font-size: 40px;   
    }
.contenido-central{
    margin-top: -50px;
    }
}
@media(min-width:1024px){
.contenedor {
    width: 1000px;    
    }
.nav {
    position: static;
    width: auto;
    }
.menu {
    display: flex;
    }
.icon-menu {
    display: none;
    }
.menu__link {
    background: none;
    font-size: 20px;
    }
.select {
    color: #fff;
    background: #FBA919;
    } 
.banner__titulo {
     font-size: 50px;
    }
.info {
    margin-top: -70px;
    }
.masinfo__descripcion {
    padding: 20px;
    }
.masinfo__titulo {
     font-size: 40px;   
    }
.masinfo__txt {
    font-size: 30px;
    }
}
@media(min-width:1280px) {
.contenedor {
    width: 1200px;
    }
.info {
    margin-top: -90px;
  }
.contenido-central  {
    margin-top: -90px;
    }
}