.headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    padding: 0 20px;
    top: 0;
    left: 0;
    width: calc(100% - 40px); /* 20px de padding a cada lado */
    height: 90px;
    z-index: 2;
    transition: all 0.3s ease;
}

.logo img {
    width: auto;
    height: 60px;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%) scale(3);
    transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
}

.ejemploBorrar {
    height: 200px;
    width: 200px;
    background-color: rgb(234, 63, 91);
}

/* En movil headerContainer height 75 */
@media (max-width: 768px) {
    .headerContainer {
        height: 75px;
    }
    .logo img {
        height: 50px;
        transform: translate(-50%, -180%) scale(1.7);
    }
}

.menuPrincipalContainer{
    display: flex;
    align-items: right;
}

.menuPrincipal{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .menuPrincipal {
        display: none;
    }
}


nav{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: fixed;
    top: 90px;
    right: -200px;
    background-color: var(--morado);
    text-align: right;
    width: 200px;
    border-radius: 10px 0 0 0;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: -1px 8px 26px 5px rgba(0,0,0,0.7);
}

nav a{
    width: calc(100% - 40px);
    padding: 20px;
    color: var(--blanco);
    font-size: 1.2rem;
    border-bottom: 1px solid var(--blanco);
    transition: all 0.3s ease;
}

nav a:hover{
    color: var(--verde);
    background-color: var(--gris);
}
