/* ――――――――― Header ――――――――― */
/* Descripción: Estilos para la cabecera de la página */ 

.Header{
    width: 100%; 
    padding: 1rem 6rem; 
    color: var(--color-grey);
    background-color: var(--color-white);
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;

    transition: 0.4s;
    
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);

    animation: slideDown 2s ease 1;
    z-index: 100;
    
    margin: auto;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;

    /* backdrop-filter: blur(10px); */
    backdrop-filter: none;

}

.Header-nav{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end; 
    align-items: center;
    width: 60%;

    gap: 5rem; 
}

.Header-svg{
    width: 7rem;
}

.Header-ul{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 4rem;
}

.Header-selected{
    font-weight: 600;
    color: #025B7B;
}

.Header-li{
    color: var(--color-primary);
    white-space: nowrap;
    font-weight: 400;
    min-width: 0rem;
}

.Header-li:hover{
    font-weight: 400;
    color: var(--color-primary);
}

.Header-li::after{
    content: "";
    height: 2px;
    display: block;

    background-color: var(--color-secondary);
    transform-origin: left;
    transform: scaleX(0);

    transition: all 1s ease;    
}

.Header-li:not(:last-child):hover::after{
    transform: scaleX(1);
}

.Header-button{
    white-space: nowrap;
    background-color: var(--color-primary);
    /* background-color: white; */
    padding: 0.7rem 1.5rem;
    border-radius: 10rem;
    border: 2px solid rgba(0, 0, 0, 0.0);
    /* box-shadow: 6px 6px 12px lightgrey,
                -6px -6px 50px white;
                 */
    color: var(--color-white);
    /* color: var(--color-primary); */
    font-weight: 600;
}

.Header-button:hover{
    opacity: 0.8;
    transition: 0.1s;
}

.Header-button:active{
    opacity: 0.4;
}

.Header-burguer{
    display: none;
}

#logged-user {
    display: none;
    color: #025b7b;
    background-color: #ffffff;
    padding: 0.7rem 2rem;
    border-radius: 10rem;

    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    /* color: black; */

    background: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    color: var(--color-primary);
  }

  #logged-user-text {
    font-weight: 500;
    color: var(--color-primary);
    /* color: white !important; */

  }

  #logged-user:hover {
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
  }
/* ――――――――― Header ――――――――― */







/* ――――――――― Footer ――――――――― */
/* Descripción: Estilos para el footer de la página */ 

.Footer {
    background-color: #025B7B;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: space-between;
    width: 100%;
}

.Footer-wrapper {
    width: 80%;
    margin: 4.25rem auto 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12.5vh;
}

.Footer-left-group {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    
    color: #fff;
    gap: 1.25rem;
}

.Footer-logo{
    width: 30vh;
}

.Footer-text{
    opacity: 66%;
    width: 80%;
}


.Footer-right-group {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    gap: 6.25rem;
    margin-bottom: 2rem;
}

.Footer-h3{
    font-weight: 500;
}

.Footer-ul{
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
}

.Footer-li{
    font-weight: 300;
    opacity: 66%;
}

.Footer-line {
    width: 100%;
    height: 2px;
    background-color: #7EC1D3;
}

.Footer-bottom-items{
    width: 80%;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: auto;
    padding: 3rem 0;
}

.Footer-copyright{
    font-size: 12px;
    font-weight: 300;
    opacity: 66%;
    color: #fff;
}

.Footer-social{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
    gap: 1.25rem;
}


/* ――――――――― Footer ――――――――― */




/* ――――――――― Media Querys - 1200px――――――――― */
/* Descripción: Estilos para tablet */

@media  (max-width:1200px) {
    
    .Header{
        padding: 1.25rem 2rem;
    }

    .Header-nav{
        display: none;
    }

    .Header-burguer{
        display: block; 
    }

    .Header-a{
        display: none;
    }

    .Header-nav{
        width: 100%;
        height:0;
        pointer-events: none;
        overflow: hidden;
        transition: all .5s ease;

        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }

    .Header-nav.isActive{
        height: 80vh;
        pointer-events: auto;
    }

    .Header-ul{
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }
    
    .Burguer-svg{
        display: block;
        width: 2.6rem;
        height: 2.6rem;
    }

    .Footer-wrapper {
        width: 80%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: center;
    }

    .Footer-right-group {
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        justify-content: flex-start;
        color: #fff;
        width: 100%;
    }

    .Footer-ul{
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        align-items: flex-start; 
    }

    .Footer-bottom-items{
        display: flex;
        flex-direction: column;
        align-items: space-between;
        justify-content: center;
        gap: 1.25rem;
    }

    button:hover, .Burguer-svg:hover{
        cursor: pointer;
    }

}

/* ――――――――― Media Querys - 1200px――――――――― */







/* ――――――――― Media Querys - 600px――――――――― */
/* Descripción: Estilos para mobile */

@media  (max-width:600px) {
    
    .Header{
        padding: 1.25rem 2rem;
    }

    .Header-nav{
        display: none;
    }

    .Header-burguer{
        display: block; 
    }

    .Header-a{
        display: none;
    }

    .Header-nav{
        width: 100%;
        height:0;
        pointer-events: none;
        overflow: hidden;
        transition: all .5s ease;

        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }

    .Header-nav.isActive{
        height: 70vh;
        pointer-events: auto;
    }

    .Header-ul{
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
    }

    .Burguer-svg{
        display: block;
        width: 2.6rem;
        height: 2.6rem;
    }

    .Footer-wrapper {
        width: 80%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: center;
    }

    .Footer-right-group {
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        justify-content: flex-start;
        color: #fff;
        width: 100%;
    }

    .Footer-ul{
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        align-items: flex-start;
        max-width: 10vh;
    }

    .Footer-bottom-items{
        display: flex;
        flex-direction: column;
        align-items: space-between;
        justify-content: center;
        gap: 1.25rem;
    }

}

/* ――――――――― Media Querys - 600px――――――――― */




