.barra-superior {
    width: 100%;
    height: 90px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.barra-superior .logo-principal {
    width: 180px;
}

.boton-menu {
    font-size: 20px;
    cursor: pointer;
    user-select: none;
}

/* INFORMACIÓN DE CONTACTO */
.info-contacto {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #efefef;
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-item:nth-child(3) {
    margin: 0;
}

.info-icono i {
    font-size: 25px;
}

.info-texto p,
.info-texto a {
    font-size: 12px;
    color: #000;
}

.info-texto h3 {
    font-size: 12px;
    text-decoration: none;
    color: #6d6d6d;
}

.info-texto a {
    cursor: pointer;
    text-decoration: none;
}

/* MENÚ LATERAL */
.menu-lateral {
    position: fixed;
    top: 0px;
    left: -250px;
    /* oculto */
    width: 250px;
    height: 100%;
    background: #111;
    color: white;
    transition: left 0.3s ease;
    padding-top: 60px;
    z-index: 1000;
}

.menu-lateral.activo {
    left: 0;
}

.menu-lateral p {
    margin: 0 20px;
    font-size: 18px;
    font-weight: bolder;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(40, 76, 255)
}

.menu-lista {
    list-style: none;
    padding: 0;
}

.menu-lista li {
    padding: 15px 20px;
}

.menu-lista li a {
    color: white;
    text-decoration: none;
    display: block;
}

.menu-lista li:hover {
    background: #333;
}


/* RESPONSIVE */
@media (min-width: 884px) {
    .barra-superior .logo-principal {
        width: 170px;
    }

    .info-contacto {
        height: 60px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .info-item {
        margin-bottom: 0;
    }

    .info-icono i {
        font-size: 15px;
    }

    .info-texto h3,
    .info-texto p,
    .info-texto a {
        font-size: 10px;
    }
}

@media (min-width: 1200px) {
    .menu-lista li {
        font-size: 12px;
    }
}