:root{
    --negro: #111;
    --naranja: #F68635;
    --blanco: #fff;
    --gris-claro: #F7F7F7;
    --gris-obscuro: #939393;
    --animar: all 0.3s ease 0s
}

body{
    color: var(--negro);
}

.btn--negro{
    background: var(--negro);
    transition: var(--animar);
}
.btn--negro:hover{
    background: var(--naranja);
    transition: var(--animar);
}

.btn--naranja{
    background: var(--naranja);
    transition: var(--animar);
}
.btn--naranja:hover{
    background: var(--negro);
    transition: var(--animar);
}

.nav{
    border-bottom: 1px solid #cbcbcb;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 20;
}
.container{
    margin: auto;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 800 !important;
    line-height: 120% !important;
}
h2, h3, h4, h5, h6{
    margin-top: 25px !important;
    margin-bottom: 20px !important;
}
p{
    margin-bottom: 8px !important;
}
h1{
    font-size: 40px !important;
}
h2{
    font-size: 30px !important;
}
h3{
    font-size: 22px !important;
}
h4{
    font-size: 18px !important;
}

.aceptar{
    border-bottom: 1px solid #cbcbcb;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(9px);
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 2;
}

.whats{
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 5;
}

.pasos{
    width: 150px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pasos--num{
    width: 30px;
    height: 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris-obscuro);
    background: var(--gris-claro);
}
.num--activo{
    color: var(--blanco);
    background: var(--negro);
}
.num--succes{
    color: var(--blanco);
    background: var(--naranja);
}

input,
textarea {
    background: var(--gris-claro) !important;
}

.loader--wrapp{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.loader{
    width: 50px;
    height: 50px;
    z-index: 10;
}

.fade {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-hide {
  opacity: 0;
  transform: translateY(30px);
}

.pop_ticket{
    position: absolute;
    width: 150px;
    background: #fff;
    right: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pop_ticket.show {
    display: block;
    opacity: 1;
}
.cerrar{
    background: var(--negro);
    color: var(--blanco);
    font-size: 11px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    position: absolute;
    right: -11px;
    top: -11px;
}


@media (max-width: 900px){
    .container{
        margin: auto;
        width: 90% !important;
    }
    .whats{
        bottom: 85px;
        right: 10px;
    }
}
