/* PALETA DE COLORES */
:root {
    --gris: #C9C9C9;

    --vino1: #4e1111;
    --vino2: #732222;
    --vino3: #983a3a;

    --guinda1: #dd3321;
    --guinda2: #e84826;

    --black: #000;
    --white: #fff;
}

body{
    background-color: black;
}
::-webkit-scrollbar-thumb{
    background: var(--vino3);
}
::backdrop {
    background-color: var(--vino2);
}






html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent]{
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}






.cursor {
    position: fixed;

    left: 0;
    top: 0;
    width: 40px;
    height: 40px;

    border-radius: 100%;
    border: 2.5px solid #b29090;
    
    pointer-events: none;

    transform: translate(calc(-50% + 15px), -50%);

    transition: all 150ms ease-out;

    z-index: 10000;
}
.cursor.hover1 {
    width: 120px;
    height: 120px;

    background-color: #e65342;
    border: none;
    opacity: 0.5;
}
.cursor.hover2 {
    width: 110px;
    height: 110px;

    background-color: #949494;
    border: none;
    opacity: 0.15;
}
.cursor.hover3 {
    width: 120px;
    height: 120px;

    opacity: 0;
}
.cursor.hover4 {
    width: 140px;
    height: 140px;

    background-color: #e65342;
    border: none;
    opacity: .8;
}
.cursor.hover4::after{
    position: absolute;

    width: 100%;
    height: 100%;

    content: "Saber más";

    font-family: "Poppins";
    font-size: 1.2em;
    line-height: 1;
    text-align: center;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}
.cursor.hover5 {
    width: 150px;
    height: 150px;

    background-color: #dd3320;
    border: none;
    opacity: .8;

    overflow: hidden;
}
.cursor.hover5::after{
    position: absolute;

    width: 100%;
    height: 100%;

    content: "Click";

    font-family: "Poppins";
    font-size: 1.3em;
    line-height: 1;
    text-align: center;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}





#loader{
    position: fixed;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: var(--black);

    z-index: 1000;
}



#sm_menu{
    position: fixed;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    font-family: "Poppins";
    color: #fff;

    background-color: var(--black);

    z-index: 999;
}
#sm_menu .menu_bar{
    position: relative;
    width: 100%;
    height: 80px;
    padding-bottom: 5px;

    display: flex;
    align-items: center;
}
#sm_menu .menu_logo{
    width: auto;
    height: auto;
    margin-left: 20px;
    margin-right: auto;

    display: flex;
    align-items: center;

    overflow: hidden;
}
#sm_menu .menu_e{
    width: 30px;
    height: 30px;
    fill: white;
}
#sm_menu .menu_tit{
    position: relative;
    width: auto;
    height: 30px;
    overflow: hidden;
}
#sm_menu .menu_tit_int{
    margin-left: -1px;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.5px;
}
#sm_menu .menu_cerrar{
    margin-right: 10px;
    padding: 10px;
    font-size: 1.9em;
    line-height: .7;
    font-weight: 400;
    rotate: 45deg;
    transform-origin: center;
    border-radius: 30px;
}
#sm_menu .menu_opciones{
    padding-top: 100px;
    overflow: hidden;
}
#sm_menu .menu_op{
    margin: auto;
    width: 50%;
    padding-block: 5px;
    margin-bottom: 25px;
    font-size: 2.2em;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
}










#sections{
    position: relative;

    width: 100%;
    height: 100%;

    z-index: 1;

    background-color: #C9C9C9;
}






#barra {
    position: fixed;

    top: 0;
    width: 100%;
    height: 130px;
    padding-bottom: 10px;
    padding-inline: 80px;

    /* background-color: red; */

    display: flex;
    align-items: center;

    font-family: "Poppins";

    z-index: 100;
}

.sombra{
    background-image: linear-gradient(0deg, transparent, #C9C9C9 100%);
}

.sombra2{
    background-image: linear-gradient(0deg, transparent 5%, #0b0b0b 100%);
}

#barra.sombra.cambio {
    background-image: none;
}
#barra .barra_logo{
    position: relative;

    width: 130px;
    height: 50px;
    padding-right: 80px;
    margin-right: auto;

    fill: black;

    cursor: pointer;
}
#barra.cambio .barra_logo{
    fill: white;
}
#barra .barra_botones{
    position: relative;
    /* margin-inline: auto; */
    display: flex;
    overflow: hidden;
}
#barra .barra_btn{
    position: relative;

    margin-inline: 12px;

    cursor: pointer;

    overflow: hidden;
    /* z-index: -1; */
}
#barra .barra_btn .int{
    position: relative;

    padding: 4px;
    padding-inline: 11px;

    font-size: 1em;

    color: #1f1f1f;
    border-radius: 3px;

    transition: transform .25s ease-in-out;
}
#barra .barra_btn.select .int{
    transform: translateY(-100%);
}
#barra.cambio .barra_btn .int{
    color: white;
}
#barra .barra_btn .int:hover{
    transform: translateY(-100%);
}
#barra .barra_btn .int::after{
    position: absolute;

    content: attr(btn-value);

    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 3px;

    color: white;
    background-color: #ae2415;
}
#barra.cambio .barra_btn .int::after{
    color: #dd3321;
    background-color: white;
}

#barra .barra_right{
    position: relative;
    margin-left: auto;
}
#barra .btn5{
    position: relative;

    width: 130px;
    padding: 0 25px 0 25px;
    margin-left: auto;

    font-size: .9em;
    line-height: 42px;
    text-align: center;

    color: #1c1c1c;

    border-radius: 50px;

    background-color: transparent;
    border: 2px solid #1c1c1c;
    box-shadow: inset 0 0 15px #0000004d;

    cursor: pointer;
}
#barra.cambio .btn5{
    color: white;
    border: 2px solid white;
    box-shadow: inset 0 0 15px #ffffff4d;
}

#barra .btn6{
    display: none;
}








@media only screen and (max-width: 600px) {
    body{
        background-color: #C9C9C9;
        overflow: hidden;
    }

    #ibody{
        position: relative;

        width: 100vw;
        height: 100vh;

        background-color: #C9C9C9;

        overflow-y: scroll;
        overflow-x: hidden;
    }
    #ibody::-webkit-scrollbar{
        width: 0px;
        height: 0px;
        box-sizing: border-box;
        background-color: transparent;
    }
    #ibody::-webkit-scrollbar-thumb{
        background: var(--rojo_barra);
        border-radius: 5px;
        box-sizing: border-box;
    }

    html.lenis,
    html.lenis #ibody {
        height: auto;
    }


    .cursor{
        display: none;
        visibility: hidden;
    }

    #barra{
        height: 80px;
        padding-bottom: 5px;
        padding-inline: 20px;
    }
    #barra .barra_logo{
        width: 30px;
        height: 30px;
        padding-right: 0px;
    }
    #barra .barra_botones{
        display: none;
    }
    #barra .barra_right{
        margin-left: auto;
    }
    #barra .btn5{
        display: none;
    }
    #barra .btn6{
        position: relative;
        display: inherit;
        width: 30px;
        height: 30px;
        fill: #000;
    }
    #barra.cambio .btn6{
        fill: white;
    }

}