:root {
    --sello-amarillo: #fdec00;
    --sello-rojo-fondo: #811812;
}

@font-face {
    font-family: "NeutraText Demi";
    src: url("../fuentes/NeutraText-Demi.otf");
}

@font-face {
    font-family: "Neutra Text Bold";
    src: url("../fuentes/Neutra Text Bold.otf");
}

@font-face {
    font-family: "NeutraDisp Titling";
    src: url("../fuentes/NeutraDisp-Titling.otf");
}

.letra_titling_sello90 {
    font-family: "NeutraDisp Titling";
}

.letra_neutra_bold_sello90 {
    font-family: "Neutra Text Bold";
}

.letra_neutratext_sello90 {
    font-family: "NeutraText Demi";
}

.color_amarillo90 {
    color: var(--sello-amarillo);
}

.color_rojo90 {
    color: var(--sello-rojo-fondo);
}

body{
    min-height: 100vh;
    background-image: url("../img/fondo_final.jpg");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

/********* scroll ***********/
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: var(--sello-amarillo);
}

::-webkit-scrollbar-thumb {
    background-color: var(--sello-rojo-fondo);
    border-radius: 20px;
    border: 3px solid var(--sello-amarillo);
}

/* ESTILOS FOOTER */
footer {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.contenedor_footer {
    height: 270px;
}

.centrado {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
}

.barra_fondo {
    stroke: none;
    fill: var(--sello-amarillo);
}

.texto_footer {
    color: var(--sello-rojo-fondo);
    font-weight: 500;
}

/* ESTILOS NAVBAR */
.navbar-toggler {
    background-color: var(--sello-amarillo);
    border: 1px solid var(--sello-amarillo);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' style='fill:%23811812'%3e%3cpath d='M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z'/%3e%3c/svg%3e");
}

.btn-close {
    background-color: var(--sello-amarillo);
}

.navbar-nav {
    align-items: flex-end;
    width: 100%;
    border-bottom: 3px solid var(--sello-amarillo);
}

.nav-item {
    text-align: center;
    width: 16%;
    border: 3px solid var(--sello-amarillo);
    border-bottom: none;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-left: 5px;
}

.letra_activa_nav.letra_nav_1 .nav-link {
    color: var(--sello-rojo-fondo);
    background-color: var(--sello-amarillo);
}

.letra_activa_nav.letra_nav_2 .nav-link {
    color: var(--sello-rojo-fondo);
    background-color: var(--sello-amarillo);
}

.letra_nav_1 {
    font-size: 18px;
}

.letra_nav_1 .nav-link {
    padding: 11px;
}

.letra_nav_2 {
    font-size: 17px;
}

.letra_nav_2 .nav-link {
    padding: 0px;
}

.nav-link,
.nav-link:focus {
    color: white;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.233);
}

.nav-link:hover {
    color: var(--sello-rojo-fondo);
    background-color: var(--sello-amarillo);
}

/* ESTILOS LOGO FLOTANTE */
.imagen_logo {
    height: 250px;
    position: absolute;
    left: 50px;
    top: 20px;
}

/*** ESTILOS DE BOTON DE ACCESO ***/
.btn_accesos_90 {
    background: var(--sello-amarillo);
    color: var(--sello-rojo-fondo);
    border: 2px solid var(--sello-amarillo);
    padding: 5px 20px;
    font-size: 22px;
    font-family: "Neutra Text Bold";
    border-radius: 3px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.btn_accesos_90:hover {
    color: var(--sello-amarillo);
}

.btn_accesos_90::after {
    content: "";
    background: var(--sello-rojo-fondo);
    position: absolute;
    z-index: -1;
    padding: 16px 20px;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0, 0);
    transition: all 0.3s ease;
}

.btn_accesos_90:hover::after {
    transition: all 0.3s ease-out;
    transform: scale(1, 1);
}


/* ESTILOS DE INPUTS */
.is_invalid {
    box-shadow: 0 0 5px 5px rgb(255, 0, 0);
}

.input_sello90 {
    background-color: var(--sello-amarillo);
    color: var(--sello-rojo-fondo);
    font-weight: bold;
    border-radius: 20px;
    font-size: 20px;
    border: 3px solid var(--sello-amarillo);
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}

.input_sello90::placeholder {
    color: var(--sello-rojo-fondo);
    font-family: "NeutraText Demi";
    text-align: center;
}

.input_sello90:focus {
    color: var(--sello-amarillo);
    background-color: var(--sello-rojo-fondo);
    border: 3px solid var(--sello-amarillo);
    box-shadow: 0 0 5px 5px rgba(255, 243, 74, 0.25);
}

.input_sello90:focus::placeholder {
    color: var(--sello-amarillo);
}
/* BRILLOS DE LA PAGINA */
.brillospagina img{
    width: 30px;
    height: 30px;
}
.brillospagina img:nth-child(1){
    position: absolute;
    right: 0;
    top: 25%;
}
.brillospagina img:nth-child(2){
    position: absolute;
    right: 50%;
    top: 15%;
}
.brillospagina img:nth-child(3){
    position: absolute;
    left: 0;
    top: 20%;
}
.brillospagina img:nth-child(4){
    position: absolute;
    right: 10%;
    top: 45%;
}
.brillospagina img:nth-child(5){
    position: absolute;
    right: 50%;
    top: 40%;

}
.brillospagina img:nth-child(6){
    position: absolute;
    left: 20%;
    top: 50%;
}
.brillospagina img:nth-child(7){
    position: absolute;
    right: 40%;
    top: 70%;

}
.brillospagina img:nth-child(8){
    position: absolute;
    right: 50%;
    top: 80%;

}
.brillospagina img:nth-child(9){
    position: absolute;
    left: 25%;
    top: 90%;

}


/* ESTILOS ICONOS REDES FLOTANTES */
.redes_movil{
    display: none;
}
.iconos_flotantes {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 70px;
    right: 0px;
    align-items: center;
    z-index: 2;
}

.iconos_flotantes a,
.iconos_flotantes svg {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.icono_facebook {
    fill: #fff;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 6.36px;
}

.icono_facebook:hover {
    fill: var(--sello-amarillo);
    stroke: var(--sello-amarillo);
    transform: scale(1.1);
}

.icono_instagram {
    fill: #fff;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 6.42px;
}

.icono_instagram:hover {
    fill: var(--sello-amarillo);
    stroke: var(--sello-amarillo);
    transform: scale(1.1);
}

.icono_youtube {
    fill: #fff;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 6.45px;
}

.icono_youtube:hover {
    fill: var(--sello-amarillo);
    stroke: var(--sello-amarillo);
    transform: scale(1.1);
}

.icono_whatsapp {
    width: 70px !important;
    height: 70px !important;
}
.icono_whatsapp:hover{
    transform: scale(1.1);
}


.animarestrella{
    animation: animacionestrellas 5s linear infinite alternate;
}
/* ANIMACION ESTRELLAS SITIO */
@keyframes animacionestrellas {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

/*********************** RESPONSIVE **********************************/
@media (max-width: 1700px) {
    .imagen_logo {
        height: 220px;
        left: 30px;
        top: 10px;
    }
}
@media (max-width: 1500px) {
    .imagen_logo {
        height: 210px;
    }
}
@media (max-width: 1350px) {
    .letra_nav_2 {
        font-size: 15px;
    }

    .letra_nav_1 {
        font-size: 16px;
    }

    .imagen_logo {
        height: 200px;
    }
}

@media (max-width: 1250px) {
    .letra_nav_2 {
        font-size: 13px;
    }

    .letra_nav_1 {
        font-size: 14px;
    }

    .imagen_logo {
        height: 190px;
        left: 20px;
    }
}

@media (max-width: 990px) {
    body{
        background-size: 100% 100%;
    }
    .contenedor_footer {
        height: 320px;
    }
    .imagen_logo {
        height: 220px;
        left: 0px;
        top: 0px;
    }

    .nav-item {
        width: 100%;
        border-radius: 0px;
    }

    .offcanvas {
        background-color: var(--sello-rojo-fondo) !important;
    }

    .card_registro_home {
        width: 100% !important;
    }
    .iconos_flotantes a:nth-child(1),
    .iconos_flotantes a:nth-child(2),
    .iconos_flotantes a:nth-child(3){
        display: none;
    }
    .redes_movil{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .redes_movil svg{
        width: 40px;
        height: 40px;
    }
    .iconos_flotantes {
        position: inherit;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: end;
    }
    .icono_whatsapp{
        width: 90px !important;
        height: 70px !important;
    }
    .icono_whatsapp:hover{
        transform: scale(1);
    }
    

}

@media (max-width: 800px) {
    .contenedor_footer {
        height: 400px;
    }
}
@media (max-width: 550px) {
    .imagen_logo {
        height: 150px;
        left: 10px;
        top: 10px;
    }
    .iconos_flotantes a, .iconos_flotantes svg {
        width: 50px;
        height: 50px;
    }
    .icono_whatsapp {
        width: 70px !important;
        height: 50px !important;
    }
    .contenedor_footer {
        height: 450px;
    }
}

@media (max-width: 450px) {
    .contenedor_footer {
        height: 520px;
    }
}
@media (max-width: 400px) {
    .imagen_logo {
        height: 120px;
    }
}