/*======================================[SECCION DE TIPOGRAFIAS]======================================*/
@font-face {
    font-family: "HelveticaRoman55";
    src: url('../assets/fonts/Main_Fonts/Helvetica\ Neue\ LT\ Std\ 55\ Roman.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HelveticaBlack95";
    src: url('../assets/fonts/Main_Fonts/Helvetica\ Neue\ LT\ Std\ 95\ Black.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HelveticaMedium65";
    src: url('../assets/fonts/Main_Fonts/Helvetica\ Neue\ LT\ Std\ 65\ Medium.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HelveticaCondensed77";
    src: url('../assets/fonts/Main_Fonts/Helvetica\ Neue\ LT\ Std\ 77\ Bold\ Condensed.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HelveticaExtraBlackCondensed107";
    src: url('../assets/fonts/Main_Fonts/Helvetica\ Neue\ LT\ Std\ 107\ Extra\ Black\ Condensed.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "RubikBold";
    src: url('../assets/fonts/Main_Fonts/Rubik-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "RubikMedium";
    src: url('../assets/fonts/Main_Fonts/Rubik-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}
/*====================================================================================================*/
header {
    position: sticky; /* ← cambiado de fixed a sticky */
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* ── Barra principal ── */
.main-menu-sticky-header {
    background-color: #525252;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
    padding: 15px 0px;
}

.header-main-index-wrapper{
    padding: 0px 25px;
}
.header-main-index-img{
    place-self: left;
    width: auto;
    height: 100px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.header-sections-menu-wrapper{
    box-sizing: border-box;
    width: 100%;
    padding: 0px 25px;
    display: flex;
}
.header-sections-menu{
    box-sizing: border-box;
    background-color: #242424;
    width: 100%;
    height: 80px;
    place-self: center;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 10px;
    column-gap: 25px;
    border-radius: 50px;
    font-family: "HelveticaMedium65", sans-serif;
}
.header-sections-menu-item{
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: whitesmoke;
}
.header-sections-menu-item:hover{
    background-color: #525252;
}
.header-sections-menu-item.active{
    background-color: #3B3B3B;
    font-family: 'HelveticaExtraBlackCondensed107',sans-serif;
}



.global-footer-container{
    background-color: #ADADAD;
    box-sizing: border-box;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px 20px 50px 20px;
    border-top: 1px solid black;
}
.global-footer-container-logo{
    width: 100px;
    height: 100%;
    object-fit: contain; 
    display: block;
}
.global-footer-container-menu{
    width: 300px;
    justify-self: end;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
}
.global-footer-container-menu-item{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: small;
    font-family: 'HelveticaBlack95', sans-serif;
    cursor: pointer;
}





/* ---- TABLET (≤ 1024px) ---- */
@media (max-width: 1024px) {
}

/* ---- MÓVIL (≤ 768px) ---- */
@media (max-width: 768px) {
    .main-menu-sticky-header{
        grid-template-columns: auto 1fr;
    }
    .header-sections-menu-wrapper{
        padding: 0px 25px;
    }
}

/* ---- MÓVIL PEQUEÑO (≤ 480px) ---- */
@media (max-width: 480px) {
    .main-menu-sticky-header {
        grid-template-columns: 1fr;
    }

    .header-main-index-img{
        place-self: center;
    }
}
@media (max-width: 400px) {
    .global-footer-container{
        grid-template-columns: 1fr;
        row-gap: 25px;
    }
}