@import url(reset.css);
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url(menu.css);
@import url(banner.css);
@import url(menuserv.css);
@import url(gradientes.css);
@import url(main.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: auto;
        font-family: 'Source Sans Pro', sans-serif;
}
header{
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.contenedor{
    width: 98%;
    margin: auto;   
    display: flex;
    justify-content: space-between;
}


header .logo {
    width: 200px;
}
.logo img{
max-height: 40px;
}


header .wapp {
    
    padding: 2px;
    width: 150px;
    height: 50px; 
    display: inline-block;
}
.wapp a{
    color: #0a1a27;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family:sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    font-style: italic;
    //text-shadow: 2px 2px 2px #000;
    
}
.wapp img{
    width: 35px;
   padding: 5px;
}




footer .contenedor{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
    padding-top: 25px;
    
}

.copy{
    font-size: 20px;
    text-align: center;
}

.sociales{
    width: 100%;
    text-align: center;
    font-size: 28PX;
}
.sociales a{
    color: #333;
    text-decoration: none;
}

iframe{
        width: 100%;
        border: 2px solid #ccc;
    }

@media (min-width:768px) {
    
    header .logo {
    width: 220px;
    }
    .logo img{
max-height: 50px;
}
    .wapp a{
    font-size: 1.4rem;

    
}
    .sociales{
        width: auto;
    }
    footer .contenedor{
        justify-content: space-between;
    }
}





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

    header{
    height: 50px;
    }
