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

.header {
    width: 100%;
    height: 110px;
    background: rgba(70, 0, 70, 0.55);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

.logo {
    width: 160px;
    height: auto;
}

.titulo-header {
    color: white;
    font-size: 30px;
    font-weight: bold;
    flex: 1;
    text-align: center;
}

.icons {
    display: flex;
    gap: 30px;
}

.iconBarra {
    width: 40px;
    height: auto;
}

.BarraSuperior {
    width: 100%;
    height: 100px;
     background: rgba(70, 0, 70, 0.55);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
   
    top: 0;
    left: 0;
    z-index: 9999;
}

.Logo {
    width: 170px;
    height: auto;
}

.TituloSuperior {
    color: white;
    font-size: 35px;
    font-weight: bold;
    margin: 0;
}

.IconosHeader {
    display: flex;
    gap: 20px;
}

.IconoHeader {
    width: 40px;
    height: auto;
    cursor: pointer;
}

.EspacioHeader {
    margin-top: 110px; 
}

.RedesSociales, .Redes {
    position: fixed;
    bottom: 20px;
    right: 30px;
    text-align: center;
    z-index: 9000;
}

.IconosRedes {
    display: flex;
    gap: 20px;
}

.IconoRed {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform .2s;
}

.IconoRed:hover {
    transform: scale(1.20);
}

.BotonMorado {
    padding: 18px;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    color: white;
    background-color: #4a004a;
    cursor: pointer;
    transition: 0.2s;
}

.BotonMorado:hover {
    background-color: #6e006e;
}

.menu-superior a:not(:last-child)::after {
    content: " | ";
    margin-left: 10px;
    color: white
}
