body {
    box-sizing: border-box;
    margin:0;
    background: rgba(1, 197, 187);  /* fallback for old browsers */
   
    font-family: 'IBM Plex Serif', serif;
    box-sizing: border-box;
}

.contenedor {
    background-color: rgba(1, 197, 187);;
    min-height: calc( 10vh - 10px );
    max-width: 1000px;
    margin: 0 auto;
    padding: 2px 3px 0 30px;
}

nav {
    background-color: #3F51B5;
}
nav ul {
    list-style:none;
    margin:0;
    padding:0;
}
nav ul li {
    padding: 1rem;
}
nav ul li:hover {
    background-color: #1a2770;
}
nav ul a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

/** Menu Sencillo **/
.sencillo ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* justify-content: center; */
    justify-content: space-between;
}
.sencillo ul li{
    text-align:center;
    margin-bottom: 20px;
    flex:1;
}
@media screen and (min-width:768px) {
    .sencillo ul {
        flex-direction: row;
    }
    .sencillo ul li {
        margin-bottom: 0px;
    }
}

/* Iconos */
.iconos ul li a {
    display: flex;
    justify-content:center;
    flex:1;
}
.iconos .icono {
    font-size: 2rem;
    flex: 0 0 3rem;
}

.iconos .texto {
    font-size: 1.4rem;
}
.iconos .texto span {
    font-size: .8rem;
    display: block;
    margin-top: 10px;
}

@media screen and (min-width:480px) {
    .iconos ul {
        display: flex;
        flex-wrap: wrap;
    }
    .iconos ul li {
        display: flex;
        flex: 0 1 calc( 50% - 2rem);
    }
}
@media screen and (min-width:768px) {
    .iconos ul li {
        display: flex;
        flex: 1;
    }
}

/** Multinivel **/
.dropdown ul {
    display: flex;
    flex-direction: column;
}
@media screen and (min-width:768px) {
    .dropdown ul {
        flex-direction: row;
    }
}
.dropdown ul li  {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.dropdown ul li ul  {
    margin-top: 1rem;
}
.dropdown ul li ul li:hover{
    background-color: #ff5e62;
}
@media screen and (min-width:768px) {
    .dropdown ul li  {
        position: relative;
        display: flex;
        flex: 1 1 100%;
    }
    .dropdown ul li ul {
        display: none;
        position: absolute;
        top:100%;
        left:0;
    }

    .dropdown ul li:hover ul {
        display: flex;
        flex-wrap: wrap;
        background-color: #ff5e62;
        margin:0;
    }

}

/** Redes Socialaes**/
.sociales ul li span{
    display: none;
}
.sociales ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-content: flex-end;
    /* justify-content: center;
    justify-content: space-around; */
    /* justify-content: space-between; */
    flex:1 0 auto;
}
.sociales ul li a:before {
    font-family: "Font Awesome 5 Brands";
}
.sociales ul li a[href*='facebook.com']::before {
    content: "\f39e";
}

.sociales ul li a[href*='twitter.com']::before {
    content: "\f099";
}
.sociales ul li a[href*='youtube.com']::before {
    content: "\f431";
}
.sociales ul li a[href*='instagram.com']::before {
    content: "\f16d";
}
.sociales ul li a[href*='pinterest.com']::before {
    content: "\f231 ";
}


/* Social y dropdown*/
.navegacion-social-dropdown {
    background-color: #3F51B5;
    display: flex;
    justify-content: space-between;
}
