/* =========================================================
   HEADER GORÁ
========================================================= */

.gora-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 200px;

    margin: 0;
    padding: 0;

    z-index: 9999;

    background: transparent;

    box-sizing: border-box;

    pointer-events: none;
}


/* =========================================================
   PARTE SUPERIOR
========================================================= */

.gora-header-superior {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 75px;

    background: rgba(255, 255, 255, 0.10);

    border-bottom: 1px solid rgba(255, 255, 255, 0.50);

    box-sizing: border-box;

    overflow: hidden;

    transform: translateY(0);

    opacity: 1;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease,
        border-color 0.3s ease;
}


.gora-header-superior-contenedor {
    width: 90%;
    max-width: 1400px;

    height: 75px;

    margin: 0 auto;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;

    transform: translateY(15px);
}


/* =========================================================
   CONTACTOS
========================================================= */

.gora-header-contactos {
    display: flex;
    align-items: center;

    gap: 40px;

    height: 75px;

    margin: 0;
    padding: 0;
}


.gora-header-contacto {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    height: 75px;

    margin: 0;
    padding: 0;

    color: #ffffff !important;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1;

    text-decoration: none !important;

    white-space: nowrap;

    box-sizing: border-box;

    transition:
        color 0.2s ease;
}


.gora-header-contacto:hover {
    color: #B10039 !important;
}


.gora-header-contacto img {
    display: block;

    width: 20px;
    height: 20px;

    object-fit: contain;

    flex-shrink: 0;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.gora-header-contacto:hover img {
    transform: scale(1.08);
}


/* =========================================================
   REDES SOCIALES
========================================================= */

.gora-header-redes {
    display: flex;
    align-items: center;

    gap: 12px;

    height: 75px;

    margin: 0;
    padding: 0;
}


.gora-header-redes a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 75px;

    margin: 0;
    padding: 0;

    text-decoration: none;

    box-sizing: border-box;

    pointer-events: auto;
}


.gora-header-redes img {
    display: block;

    width: 23px;
    height: 23px;

    object-fit: contain;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.gora-header-redes a:hover img {
    transform: scale(1.12);

    opacity: 0.75;
}


/* =========================================================
   PARTE INFERIOR
========================================================= */

.gora-header-inferior {
    position: absolute;

    top: 75px;
    left: 0;

    width: 100%;
    height: 150px;

    background: rgba(255, 255, 255, 0.10);

    box-sizing: border-box;

    transform: translateY(0);

    transition:
        transform 0.4s ease,
        height 0.35s ease,
        background-color 0.35s ease;

    pointer-events: auto;
}


.gora-header-inferior-contenedor {
    width: 90%;
    max-width: 1400px;

    height: 150px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;

    transition:
        height 0.35s ease;
}


/* =========================================================
   LOGO
========================================================= */

.gora-logo {
    display: flex;
    align-items: center;

    transition:
        transform 0.35s ease;
}


.gora-logo a {
    display: flex;
    align-items: center;

    text-decoration: none;
}


.gora-logo img {
    display: block;

    width: auto;
    height: 90px;

    object-fit: contain;

    transition:
        height 0.35s ease;
}

.gora-header.is-scrolled .gora-logo {
    position: relative;
    top: 5px;
}


/* =========================================================
   MENÚ
========================================================= */

.gora-nav {
    display: flex;
    align-items: center;

    pointer-events: auto;
}


.gora-nav ul {
    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.gora-nav li {
    margin: 0;
    padding: 0;
}


.gora-nav a {
    display: block;

    margin: 0;
    padding: 0;

    color: #000000 !important;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 18px;

    font-weight: 700;

    line-height: 1;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        color 0.2s ease;
}


/* =========================================================
   HOVER
========================================================= */

.gora-nav a:hover {
    color: #B10039 !important;
}


/* =========================================================
   PÁGINA ACTUAL
   EL JS AGREGA .gora-menu-activo
========================================================= */

.gora-nav a.gora-menu-activo {
    color: #B10039 !important;
}

/* =====================================================
   MENÚ CENTRADO AL REDUCIR EL HEADER
===================================================== */

.gora-header.is-scrolled .gora-nav {
    transform: translateY(25px);
}

/* =========================================================
   ESTADO SCROLLEADO
========================================================= */

.gora-header.is-scrolled .gora-header-superior {
    transform: translateY(-100%);

    opacity: 0;

    border-bottom-color: transparent;

    pointer-events: none;
}


.gora-header.is-scrolled .gora-header-inferior {
    height: 120px;

    transform: translateY(-75px);

    background: #292929;
}


.gora-header.is-scrolled .gora-header-inferior-contenedor {
    height: 100px;
}


.gora-header.is-scrolled .gora-logo {
    transform: translateY(20px);
}


.gora-header.is-scrolled .gora-logo img {
    height: 65px;
}


/* =========================================================
   MENÚ DURANTE SCROLL
========================================================= */

.gora-header.is-scrolled .gora-nav a {
    color: #ffffff !important;
}


/* HOVER DURANTE SCROLL */

.gora-header.is-scrolled .gora-nav a:hover {
    color: #B10039 !important;
}


/* PÁGINA ACTUAL DURANTE SCROLL */

.gora-header.is-scrolled .gora-nav a.gora-menu-activo {
    color: #B10039 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 860px) {

    .gora-header {
        height: 150px;
    }


    /* -----------------------------------------
       PARTE SUPERIOR
    ----------------------------------------- */

    .gora-header-superior {
        height: 50px;
    }


    .gora-header-superior-contenedor {
        width: 92%;
        height: 50px;

        transform: translateY(0);
    }


    .gora-header-contactos {
        gap: 15px;

        height: 50px;
    }


    .gora-header-contacto {
        height: 50px;
    }


    .gora-header-contacto span {
        display: none;
    }


    .gora-header-contacto img {
        width: 19px;
        height: 19px;
    }


    .gora-header-redes {
        gap: 2px;

        height: 50px;
    }


    .gora-header-redes a {
        width: 30px;
        height: 50px;
    }


    .gora-header-redes img {
        width: 19px;
        height: 19px;
    }


    /* -----------------------------------------
       PARTE INFERIOR
    ----------------------------------------- */

    .gora-header-inferior {
        top: 50px;
        height: 100px;
    }


    .gora-header-inferior-contenedor {
        width: 92%;
        height: 100px;
    }


    .gora-logo img {
        height: 60px;
    }


    .gora-nav ul {
        gap: 14px;
    }


    .gora-nav a {
        font-size: 14px;
    }


    /* -----------------------------------------
       SCROLL
    ----------------------------------------- */

    .gora-header.is-scrolled .gora-header-inferior {
        transform: translateY(-50px);
    }


    .gora-header.is-scrolled .gora-logo {
        transform: translateY(12px);
    }


    .gora-header.is-scrolled .gora-logo img {
        height: 52px;
    }

}