/* ============================================== */
/* ROOT */
/* ============================================== */

:root{

/*-- Color  --*/

  --color-pri:    #deff00;
  --color-sec:    #0d0e0f;
  --color-ter:    #706DF0;

  --color-input-s:#212121;

/*-- Font Family --*/

  --f-family-h: "Poppins", serif;
  --f-family:   "Poppins", sans-serif;

/*-- Font Size --*/

  --fs-base:    1rem;
  --lh-base:    1.5;

}

/* ============================================== */
/* COLOR */
/* ============================================== */

.c-pri  {  background:var(--color-pri);  }
.c-sec  {  background:var(--color-sec);  }
.c-ter  {  background:var(--color-ter);  }

.tc-pri {  color:var(--color-pri);       }
.tc-sec {  color:var(--color-sec);       }
.tc-ter {  color:var(--color-ter);       }

/* ============================================== */
/* TEXT */
/* ============================================== */

h1,h2,h3,h4,h5,h6    {  color: var(--color-0);  }
p,li                 {  color: var(--color-40);  }

p,h1,h2,h3,h4,h5,h6  {  margin:10px 0;  }

p,li,a,body,pre,label{  font-weight: 400;  }
h1,h2,h3,h4,h5,h6    {  font-weight: 600;  }
b                    {  font-weight: 600;  }

/* ============================================== */
/* PRELOADER */
/* ============================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.preloader::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("./../../images/logo/preloader_logo.svg") no-repeat center center;
  z-index: 9;
}

/* ============================================== */
/* BTN */
/* ============================================== */

.btn      {  background: var(--color-80);  font-weight:600; }
.btn:hover{  background: var(--color-60);   }

.btn.c-pri{  background: var(--color-pri); color:var(--color-100); }
.btn.c-sec{  background: var(--color-sec);  }
.btn.c-ter{  background: var(--color-ter);  }
.btn.c-pri:hover{  background: var(--color-60);  }
.btn.c-sec:hover{  background: var(--color-60);  }
.btn.c-ter:hover{  background: var(--color-60);  }

.btn.link        {  color: var(--color-60);  }
.btn.link::before{  background: var(--color-60);  }

.btn.c-pri-outline{
  background: transparent;
  outline: 2px solid var(--color-80);
  color: white;
  transition: all 0.3s ease;
}

.btn.c-pri-outline:hover{
  outline: 2px solid var(--color-0);
  color: var(--color-pri);
}

/* ============================================== */
/* REMOVE */
/* ============================================== */

#remove{
  position: absolute;
  right: 10px;
  top:10px;
  margin: 0;
}

/* ============================================== */
/* BODY */
/* ============================================== */

body {
  color: var(--color-font);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer{
  margin-top: auto;
}

input:focus,
textarea:focus{
  color: white !important;
}

textarea,
input{
  background: var(--color-input-s);
  border-radius: 0px;
  font-size: 1.5em !important;
  font-weight: 600 !important;
}

textarea{
  border: 1px solid var(--color-80) !important;
}

input{
  background: transparent;
  border-top:0px !important;
  border-left: 0px !important;
  border-right: 0px !important;
  border-bottom: 1px solid var(--color-80) !important;
}

input:focus{
  border-bottom: 1px solid var(--color-pri) !important;
}


label{
  margin-top: 20px;
  color: var(--color-0);
}

/* ============================================== */
/* H1 BIG */
/* ============================================== */

.h1{
  font-size: 90px;
  line-height: 90px;
  font-weight: 600;
}

.quotes{
  position: relative;
  padding-left: 70px;
}

.quotes:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 60px;
  height: 60px;
  background: url(./../../images/body/icon_arrow.svg) no-repeat center;
  background-size: 40px;
  background-color: var(--color-pri);
  transform: rotate(-90deg);
  box-sizing: border-box;
}


@media screen and (max-width: 768px){
  .quotes:after {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
  .quotes{
    padding-left: 60px;
  }
  .h1{
    font-size: 40px;
    line-height: 50px;
  }
  .block-content.big{
    padding: 40px 30px;
  }
}

@media screen and (max-width: 480px){
  .h1{
    font-size: 30px;
    line-height: 40px;
  }
}

/* ============================================== */
/* CONFIRM */
/* ============================================== */

.confirm{
  margin-bottom: 20px;
}

.confirm li{
  border-bottom: 1px solid var(--color-80);
  padding: 10px;
}

.confirm p{
  margin: 0;
}

.confirm p span{
  color: var(--color-0);
}

/* ============================================== */
/* TIMELINE */
/* ============================================== */

.timeline {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline:after,
.timeline:before,
.timeline li:before,
.timeline li .wrap:after{
  background: var(--color-70);
}

.timeline:after,
.timeline:before{
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 50%;
}

.timeline:before{
  top: auto;
  bottom:0;
  left: 50%;
  margin-left: -5px;
}

.timeline li {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    height: auto;
    position: relative; /* Asegura que el 'before' se posicione correctamente dentro del 'li' */
}

.timeline li:nth-child(even) {
    justify-content: flex-end;
}

.timeline li .wrap {
    display: inline-block;
    background: var(--color-sec);
    padding: 30px;
    border-radius: 10px;
    max-width: 45%;
    width: 100%;
    position: relative;
    margin: 0;
    border: 1px solid var(--color-90);
}

.timeline li .wrap:after{
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  right: -10.5%;
  top: 50%;
}

.timeline li:nth-child(even) .wrap:after {
  left: -10.5%;
}

.timeline li .wrap :is(p){
  margin: 0;
}

.timeline li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline:before,
.timeline li:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ============================================== */
/* LOGO */
/* ============================================== */

.logo_ventajas li{
  background: var(--color-sec);
  padding: 30px;
  border-radius: 10px;
  border:  1px solid var(--color-90);
}

.logo_color{
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}

.logo_color li{
  display: flex;
  align-items: flex-end;
}

.logo_color :is(p,h4){
  margin: 0;
  color: var(--color-0);
}

.logo_color h4{
  font-weight: 600;
}

.logo_color span{
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 5px 10px;
  margin: 10px;
}

/* ============================================== */
/* LOGOS */
/* ============================================== */

:root{
  --size:250px;
  --sec: 30s;
  --qty: 24;
}

.logos li img {
  opacity: 0.2;
  transition:all 250ms ease-in-out;
  width: var(--size); /* Ancho de cada logo */
  height: var(--size); /* Alto de cada logo */
}

.logos li:hover img{
  opacity: 1;
}

.logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos {
  width: 90%;
  margin-inline: auto;
  position: relative;
  height: var(--size); /* Ajusta la altura para los logos de 250px */
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

.logos:hover .item {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  to {
    left: -250px; /* Ajusta el desplazamiento de los logos */
  }
}

.item {
  width: var(--size); /* Ancho de cada item */
  height: var(--size); /* Alto de cada item */
  position: absolute;
  left: max(calc(var(--size) * var(--qty)), 100%); /* Ajusta el número de logos */
  animation-name: scrollLeft;
  animation-duration: var(--sec); /* Puedes ajustar la duración según lo desees */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Ajusta los retrasos para cada uno de los 24 logos */
.item1 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 1) * -1); }
.item2 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 2) * -1); }
.item3 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 3) * -1); }
.item4 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 4) * -1); }
.item5 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 5) * -1); }
.item6 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 6) * -1); }
.item7 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 7) * -1); }
.item8 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 8) * -1); }
.item9 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 9) * -1); }
.item10 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 10) * -1); }
.item11 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 11) * -1); }
.item12 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 12) * -1); }
.item13 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 13) * -1); }
.item14 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 14) * -1); }
.item15 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 15) * -1); }
.item16 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 16) * -1); }
.item17 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 17) * -1); }
.item18 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 18) * -1); }
.item19 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 19) * -1); }
.item20 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 20) * -1); }
.item21 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 21) * -1); }
.item22 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 22) * -1); }
.item23 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 23) * -1); }
.item24 { animation-delay: calc(var(--sec) / var(--qty) * (var(--qty) - 24) * -1); }

/* ============================================== */
/* PARALLAX-PIN */
/* ============================================== */

.parallax-pin{
    z-index: -1;
}

.parallax-pin > div{
    bottom: 0;
}

.content-pin{
  max-width: 1440px;
}

/* ============================================== */
/* PLANE */
/* ============================================== */

#proof{
  position: relative;
}

.paper-plane{
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  top:0;
  left: 0;
}

@media screen and (max-width: 768px){
  .paper-plane{
    display: none;
  }
}

/* ============================================== */
/* CURSOR */
/* ============================================== */

@media (hover: hover) and (pointer: fine) {
  #cursor {
    z-index: 99;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    will-change: transform;
  }

  #cursor .cursor--inner {
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-pri);
  }
}

/* ============================================== */
/* HERO */
/* ============================================== */

.hero {
  width: 100%;
  height: 100vh;
  aspect-ratio: 16 / 9; /* Mantiene proporciones de la imagen */
  position: relative;
}

.hero:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none; /* Aparece solo en pantallas pequeñas */
}

.hero .info {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 10%;
  max-width: 480px;
  width: 100%;
}

.hero .info .h2 {
  color: white;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 1.0);
  font-weight: 600;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .hero .info {
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center; /* Centra el texto dentro del contenedor */
    width: 90%; /* Ajusta el ancho para pantallas pequeñas */
  }

  .hero:after {
    display: block; /* Fondo oscuro visible en pantallas pequeñas */
  }
}

/* ============================================== */
/* MOCKUPS */
/* ============================================== */

.mockups_info{
  overflow: hidden;
  position: relative;
}

.mockups_info .mockups{
  width: 400%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.mockups_info .mockups li span.h1{
  font-size: 3rem;
}

.mockups_info .mockups li span{
  position: absolute;
  top: 40px;
  left: 0;
  background: var(--color-pri);
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockups_info .mockups li span:after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0; /* Cambiamos la orientación del triángulo */
  border-color: transparent var(--color-pri) transparent transparent;
}

.mockups li{
  width: 100%;
  padding: 20px;
  position: relative;
}

.mockups li img{
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 40px 60px -50px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1024px){
  .mockups_info .mockups{
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .mockups_info .mockups li span{
    width: 80px;
    height: 80px;
  }
}

/* ============================================== */
/* SERVICE */
/* ============================================== */

.service{
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}

.service .h3{
  text-align: center;
  position: relative;
  font-size: 260px;
  line-height: 200px;
  font-weight: 600;
  margin: 0;
}

@media screen and (max-width: 1440px){
  .service .h3{
    font-size: 200px;
    line-height: 160px;
  }
}

@media screen and (max-width: 768px){
  .service .h3{
    font-size: 120px;
    line-height: 100px;
  }
}

@media screen and (max-width: 480px){
  .service{
    padding: 40px 0;
  }
  .service .h3{
    font-size: 60px;
    line-height: 60px;
  }
}

/* ============================================== */
/* MENU CLIENT */
/* ============================================== */

.menu-client li{
  border-bottom: 1px solid var(--color-100);
  padding: 40px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.menu-client li b{
  color: var(--color-0);
}

.menu-client li:hover :is(p,b){
  color: var(--color-100);
}

.menu-client li:after{
  content: "";
  background: var(--color-pri);
  position: absolute;
  height: 60%;
  opacity: 0;
  width: 100%;
  top:20%;
  left: 0;
}

.menu-client li:hover:after{
  height: 100%;
  top:0;
  opacity: 1;
}

.menu-client li p,
.menu-client li:after{
  transition:all 255ms ease-in-out;
}

.menu-client li .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  flex-wrap: wrap;
  bottom: 0;
}

.menu-client li .content span{
  opacity: 0;
  left: 20px;
  position: relative;
  z-index: 2;
  width: 50%;
}

.menu-client li .content.fade-in span{
  opacity: 1;
  left: 0;
}

.menu-client li .content span:nth-child(1){
  transition-delay: 0.2s;
}

.menu-client li .content.fade-in span:nth-child(2){
  transition-delay: 0.4s;
}

.linea{
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.menu-client li .content.fade-out{
  opacity: 0;
  bottom: 10px;
}

.menu-client li .content,
.menu-client li .content span{
  -webkit-transition:all 500ms ease-in-out;
  -moz-transition:all 500ms ease-in-out;
  -ms-transition:all 500ms ease-in-out;
  transition:all 500ms ease-in-out;
}

.menu-client li:hover .content span:last-child p{
  color:var(--color-100);
}

.menu-client li .content span:last-child p{
  color: var(--color-30);
}

@media screen and (max-width: 768px){
  .menu-client li .content{
   
  }

  .menu-client li .content span{
    width: 100%;
  }
}

/* ============================================== */
/* PARALLAX */
/* ============================================== */

.parallax{
  overflow: hidden;
  z-index: 1;
}

/* ============================================== */
/* WEB */
/* ============================================== */

.web {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.web li {
  margin: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web li:nth-child(odd) {
  flex-direction: row-reverse;
}

.web li :is(.info,span){
  width: 40%;
}

.web li span{
  overflow: hidden;
  height: 100%;
  background:white;
  position: relative;
  height: 800px;
  border-radius: 5px;
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.2);
}

.web li span:after{
  content: url(./../../images/body/bar.svg);
  position: absolute;
  z-index: 9;
  top:-2px;
  left: 0;
  width: 100%;
}

.web li .info {
  padding: 30px 80px;
}

img.web_1,
img.web_2{
  position: absolute;
  max-width: 350px;
}

.web_1{
  left: 10%;
}

.web_2{
  right: 10%;
  bottom: 0;
}

@media screen and (max-width: 1440px){

  .web li:nth-child(odd) {
    flex-direction: row;
  }

  .web li:nth-child(odd),
  .web li{
    flex-direction: column;
  }

  .web li {
    margin: 20px 0;
  }
  .web li :is(.info,span){
    width: 100%;
  }
  .web li .info {
    padding: 20px 30px;
  }
  .web_1{
    left: 5%;
  }
  .web_2{
    right: 5%;
  }

}

@media screen and (max-width: 768px){
  .web li .info {
    padding: 20px 0;
  }
}

/* ============================================== */
/* IMG FOOTER */
/* ============================================== */

.puesto{
 text-transform: uppercase;
 font-size: 0.8rem;
 font-weight: 600;
}

.info-designer{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.info-designer > img{
  border-radius: 50%;
  border:5px solid var(--color-pri);
  width: 100px;
  height: 100px;
  overflow: hidden;
  transform: none !important;
  margin-right: 20px;
}


.img_footer{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--color-80);
  border-bottom: 1px solid var(--color-80);
}

.img_footer > img{
  position: absolute;
  width: 100%;
  height: auto;
  top:0%;
  filter: grayscale(100%);
  opacity: 0.3;
  transform: translatey(-50%);
}

.img_footer:after{
  content: "";
  width: 100%;
  height: 100%;
  background:rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.info_footer{
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  padding: 100px 30px;
  margin: 0 auto;
  text-align: center;
  color:white;
}

.info_footer .h2{
  font-size: 5rem;
  font-weight: 600;
}

@media screen and (max-width: 768px){
  .info_footer .h2{
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px){
  .info_footer .h2{
    font-size: 2rem;
  }
}

/* ============================================== */
/* FOOTER */
/* ============================================== */

.info_contact{
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
}

.info_contact li{
  position: relative;
  width: 20%;
  height: 50vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  overflow: hidden;
}


.info_contact li :is(h3,p){
  position: relative;
  left: -150%;
}

.info_contact li:after{
  content: "";
  width: 1px;
  height: 0%;
  position: absolute;
  left: 0;
  top: 0;
  background:rgba(255, 255, 255, 0.2);
}

.info_contact.active li :is(h3,p){
  left: 0;
}

.info_contact.active li:after{
  height: 100%;
}
.info_contact.active li:nth-child(1):after{
  transition-delay: 0s;
}

.info_contact.active li:nth-child(2):after{
  transition-delay: 0.2s;
}

.info_contact.active li:nth-child(3):after{
  transition-delay: 0.4s;
}

.info_contact.active li:nth-child(1) h3{
  transition-delay: 0.6s;
}

.info_contact.active li:nth-child(2) h3{
  transition-delay: 0.8s;
}

.info_contact.active li:nth-child(3) h3{
  transition-delay: 1s;
}

.info_contact.active li:nth-child(1) p{
  transition-delay: 0.8s;
}

.info_contact.active li:nth-child(2) p{
  transition-delay: 1s;
}

.info_contact.active li:nth-child(3) p{
  transition-delay: 1.2s;
}

.info_contact li :is(h3,p),
.info_contact li:after{
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  transition:all 500ms ease;
}

@media screen and (max-width: 768px){
  .info_contact{
    flex-direction: column;
  }
  .info_contact li{
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .info_contact li :is(h3,p){
    left: 0;
  }

  .info_contact li:after{
    height: 1px;
  width: 100%;
  left: 0;
  top: auto;
  bottom:0;
}

}

/* ============================================== */
/* WIZARD */
/* ============================================== */

.step {
    display: none;
}

#step1,
#step2,
#step3,
#step4 {
    display: block;
}

.ol-1{
  max-width: 768px;
  width: 100%;
  margin-top: 100px;
  border:1px solid var(--color-80);
}

/* ============================================== */
/* INPUT FORM */
/* ============================================== */

.i-form input,
.i-form .checkmark{
  border-radius: 0;
}

.i-form .checkmark{
  background-color: transparent;
}

.i-form .container input[type="checkbox"]:checked ~ .checkmark:after,
.i-form .container input[type="radio"]:checked ~ .checkmark:after {
  border-radius: 5px;
}

/* ============================================== */
/* INPUT COLOR */
/* ============================================== */

.color-select{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 5px;
  background: var(--color-input-s);
  gap: 20px;
}

.color-select label{
  margin: 0;
}

.custom-color-input {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-80);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Ocultar el input real */
.custom-color-input input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}


/* ============================================== */
/* BULLETS */
/* ============================================== */

.progress-bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-80);
    transition: background-color 0.3s;
}

.bullet.active {
      background: var(--color-pri);
    }

/* ============================================== */
/* ALERT */
/* ============================================== */

.field-alert {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}


/* ============================================== */
/* ALERTS */
/* ============================================== */

.alert{
  width: auto;
  overflow: hidden;
  padding:15px 20px;
  position: fixed;
  text-align: center;
  z-index: 999;
  left: 50%;
  border-radius: 10px;
  bottom: 0;
  transform: translate(-50%,-50%);
  opacity: 0;
}

.alert p{
  font-weight: 600;
  margin: 0;
}

.alert.alert-warning{
  background: #FFCCCC;
  border:1px solid #F7A7A7;
}

.alert.alert-warning p{
  color:#4F2222;
}

.alert.alert-success{
  background: #A3EF97;
  border:1px solid #7FD072;
}

.alert.alert-success p{
  color:#284F22;
}

.show {
  display: block !important;
  animation-name: show;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

@keyframes show {
  0%   { opacity: 0; bottom: 0;}
  10%  { opacity: 1; bottom: 30px;}
  90%  { opacity: 1; bottom: 30px;}
  100% { opacity: 0; bottom: 0;}
}

/* ============================================== */
/* MODAL */
/* ============================================== */

.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* ============================================== */
/* LOGO POSITION */
/* ============================================== */

.position{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:10px;
}

.position li{
  width: 32%;
  padding: 20px;
  background: var(--color-input-s);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 10px;
  text-align: center;
}

.position li.info{
  flex-direction: row;
  justify-content: space-between;
}

.position li.info .container{
  width: 100%;
}

.position li.c-sec{
  background: var(--color-sec);
  box-shadow: inset 0 0 0 1px var(--color-pri);
  box-sizing: border-box;
}

.position.col-4 li{
  width: 23%;
}

.position li img{
  width: 100%;
}

@media screen and (max-width: 768px){
  .position li{
    width: 100%;
  }
  .position{
    flex-direction: column;
  }
}

/* ============================================== */
/* CHECKBOX */
/* ============================================== */

.container {
  margin: 0;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  background: var(--color-90);
  border-radius: 5px;
  overflow: hidden;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.checkmark.accept{
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: var(--color-80);
}

.container.check input:checked ~ .checkmark.accept {
  background-color: var(--color-ter);
}

.container p{
  margin: 0;
  text-align: center;
  padding:10px 5px;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 600;
}

.t-text{
  margin-top: 10px;
  font-size: 0.80rem;
}

.container input:checked + p {
  color: var(--color-0); /* Cambia el color del texto cuando el input está seleccionado */
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container input[type="radio"]:checked ~ .checkmark:after,
.container input[type="checkbox"]:checked ~ .checkmark:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-ter);
}


/* checkbox */
.container.check input[type="checkbox"]:checked ~ .checkmark.accept:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--color-0);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}


/* ============================================== */
/* PACK */
/* ============================================== */

.pack{
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pack .price{
  margin-top: auto;
}

.pack p.uppercase{
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 600;
}

.pack span{
  position: relative;
}

.pack span:after{
  content: "$";
  position: absolute;
  font-size: 0.5em;
  top:5px;
  left: -15px;
}

.pack span:before{
  content: "USD";
  position: absolute;
  font-size: 0.5em;
  bottom:5px;
  right: -40px;
}

.pack .menu-list{
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}


/* ============================================== */
/* ACORDEON */
/* ============================================== */

.acordeon :is(ul,li,a){
  width: 100%;
}

.acordeon a{
  position: relative;
  padding: 10px 20px;
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--color-70);
  transition:all 250ms ease;
}

.acordeon a:before {
  content: " ";
  background-image: url(./../../images/icons/sprite_white.svg);
  background-size: 240px;
  overflow: hidden;
  position: absolute;
  height: 24px;
  width: 24px;
  right: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center; /* Establece el origen de la transformación en el centro */
  background-position: -192px -72px;
  transition: all 250ms ease;
}

.acordeon li.current a:before {
  transform: translate(-50%, -50%) rotate(-90deg); /* Mantén la posición y rota */
}


.acordeon li.current,
.acordeon a:hover{
  background: var(--color-70);
}

ul.menu-list,
.acordeon p{
  padding: 0 20px 20px 20px;
  width: auto !important;
}

.acordeon p{
  margin: 0;
}

.acordeon p,
.acordeon ul.menu-list{
  display: none;
}

/* ============================================== */
/* SELECT */
/* ============================================== */

:root{
  --Icon-size: 24px;
}

.custom-select-wrapper select {
  display: none;
}

.custom-select,
.custom-select-trigger,
.custom-option {
  position: relative;
  width: 100%;
}

.custom-select-wrapper{
  width: 300px;
}

.custom-select-trigger{
  padding:10px 20px 9px !important;
}

.custom-select-trigger:hover{
  cursor: pointer;
}

.custom-select-trigger:after {
  content: " ";
  background-image: url("./../../images/icons/sprite_black.svg");
  background-size: 240px;
  overflow: hidden;
  display: block;
  position:absolute;
  right: 15px;
  top:10px;
  height: var(--Icon-size);
  width: var(--Icon-size);
  z-index: 2;
  transform: rotate(90deg);
  background-position: -192px -72px;
}

.custom-select.opened .custom-select-trigger:after {
  transform: rotate(0deg);
}

.custom-select-trigger,
.custom-options{
  background: var(--color-0);
  overflow: hidden;
  border:1px solid var(--color-10);
}

.custom-options{
  box-shadow: 0 20px 30px -20px var(--color-blue-3);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: -1px;
  max-height: 300px;
  overflow-y: scroll;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(3px);
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option{
  padding: 15px 20px;
  color: #77767c;
}

.custom-option:not(:last-child){  border-bottom: 1px solid var(--color-10);  }

.custom-option:hover{
  color: var(--color-black);
  cursor: pointer;
  background: var(--color-3);
}

.custom-select-trigger,
.custom-select-trigger:after,
.custom-options,
.custom-option{
  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;
}

@media screen and (max-width: 768px){
  .custom-select-wrapper{
    width: 100%;
  }
}












