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

:root{

  /*-- Color  --*/

  --color-primary:       #F7A10D;
  --color-primary-h:     #e08a00;
  --color-complementary: #CEE3D6;

  --color-blue:          #002576;
  --color-light-blue:    #00BADE;
  --color-gold:          #C4AB41;

  /*-- Font Family --*/

  --f-family:   'Montserrat', sans-serif;
  --f-family-h: 'Montserrat', sans-serif;

  /*-- Font Weight --*/

  --f-weight-m: 600;
}

label{
  font-size:   16px;
  margin: 15px 0 5px;
}

p.tiny{
  font-size: 12px;
}

.super{
  vertical-align: super;
  font-size: 0.775em;
  transform: translateY(0.2ch);
}
.super-k{
  vertical-align: super;
  font-size: 0.725em;
  transform: translateY(0.3ch);
}
.shrink-0{
  flex-shrink: 0;
}
.dropdown-content{
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.15s linear;
  width: max-content;
}
.dropdown-content > *{
  width: max-content;
}
.dropdown-content.open{
  grid-template-rows: 1fr;
}
@media only screen and (min-width:481px){
  .super{
    transform: translateY(0.4ch);
  }
  .super-k{
    vertical-align: super;
    font-size: 0.675em;
    transform: translateY(0.4ch);
  }
}

@media only screen and (min-width:769px) and (max-width:1440px){
  .lg-col-2{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================== */
/* MENSAJE */
/* ============================================== */

.mensaje {
  margin-top: 5px;
  font-weight: bold;
}
.mensaje.valido {
  color: green;
}
.mensaje.invalido {
  color: red;
}

/* ============================================== */
/* ARROW-LEFT */
/* ============================================== */

.arrow-left{
  position: relative;
}

.img-arrow-left{
  max-width: 150px;
}

.arrow-left:after{
  content: url("./../../images/body/arrow_left.svg");
  position: absolute;
  width: 200px;
  left: 80%;
  top:0;
}

.arrow-left.rev:after {
  top:20%;
  transform: rotate(180deg) scaleX(-1);
}

@media only screen and (max-width: 768px){
  .arrow-left:after{
    display: none;
  }
}

/* ============================================== */
/* MEMBRESIA ICON */
/* ============================================== */

.membresia_icon{
  width:30px;
  margin: 0 auto;
}

.membresia_btn .btn{
  margin: 0 0 30px;
}

@media only screen and (max-width: 768px){
  .membresia_icon{
    margin: 0;
    float: right;
  }
  .membresia_btn{
    display: flex;
    flex-direction: column;
  }
  .membresia_btn .btn{
    margin: 0 0 10px;
  }
}

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

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

.preloader::before{
  content: "";
  width: 100px;
  height: 100px;
  margin:-50px 0 0 -50px;
  top: 50%;
  left: 50%;
  display: block;
  z-index: 9;
  position: absolute;
  background: url("./../../images/logo/preloader_logo.svg") no-repeat 50% 50%/contain;
}

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

.c-primary{
  background: var(--color-primary);
}

.c-complementary{
  background: var(--color-complementary);
}

.c-grad{
  background: rgb(210,214,203);
  background: linear-gradient(180deg, rgba(210,214,203,1) 0%, rgba(210,214,203,0) 100%);
}

.c-blue{
  background: var(--color-blue);
}

.tc-blue{
  color: var(--color-blue);
}

.bg-overlay.color{
  background: rgba(36,40,30,0.8);
}

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

.padding-footer{
  padding-left: 15%;
}

@media only screen and (max-width: 768px){
  .padding-footer{
    padding-left: 0;
  }
}

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

.hero{
  position: relative;
}

.hero:after,
.hero:before {
  content: "";
  position: absolute;
  top:-60px;
  background-image: url("./../../images/body/planta.png");
  background-repeat: no-repeat;
  background-size: contain; /* Ajusta el tamaño de fondo según tus necesidades */
  z-index: 0;
  width: 280px;
  height: 380px;
}

.hero:after {
  left: 0;
}

.hero:before {
  right: 0;
  transform: scaleX(-1);
}

@media only screen and (max-width: 1440px){
  .hero:after,
  .hero:before {
    width: 150px;
    height: 250px;
  }
}

@media screen and (max-height: 768px) {
  .hero:after,
  .hero:before {
    width: 130px;
    height: 230px;
  }
}

/* ============================================== */
/* SUBPAGE */
/* ============================================== */

.subpage{
  height: 400px;
}

.subpage .info{
  transform: translateY(70px);
  position: relative;
}

@media only screen and (max-width: 768px){
  .subpage{
    height: 150px;
  }
  .subpage .info{
    transform: translateY(30px);
  }
}

/* ============================================== */
/* MARGIN-S */
/* ============================================== */

.margin-s{
  margin-top: -150px;
}

.margin-s ul li{
  padding: 30px;
}

@media only screen and (max-width: 768px){
  .margin-s{
    margin-top: -50px;
  }
}

.min-height{
  background: #ccc;
  align-items: flex-end;
}

p.dot{
  position: relative;
  padding-left:20px ;
}

p.dot:after{
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top:12px;
  left: 0;
  border-radius: 50%;
  background: black;
}


/* ============================================== */
/* TEASER IMG CENTER */
/* ============================================== */

@media only screen and (max-width: 1440px){
  .teaser-img-center{
    width: 200px;
  }
}

/* ============================================== */
/* TABLE */
/* ============================================== */

table.special th:nth-child(2),
table.special th:nth-child(3),
table.special td:nth-child(2),
table.special td:nth-child(3){
  text-align: center;
  width: 10%;
}

table.special tr:nth-child(odd) {
    background: #D8DBD2;
}

table.special tr:nth-child(even) {
    background: #EEF2E6;
}

table.special tr:last-child{
  border: none;
}

table td.t-center{
  font-weight: bold;
}

@media only screen and (max-width: 768px){
  table.special th:nth-child(2),
  table.special th:nth-child(3),
  table.special td:nth-child(2),
  table.special td:nth-child(3){
    text-align: left;
    width: auto;
  }

  table.special td:first-child{
    justify-content: center;
    background: var(--color-black);
    color: white;
  }

  table td:last-child{
    justify-content: space-between;
  }

  table td.t-center{
    justify-content: center;
  }

}

/* ============================================== */
/* SUPER */
/* ============================================== */

.menu-super li{
  background: var(--color-blue);
  color: white;
  position: relative;

  font-weight: bold;
  padding: 20px 30px 20px 50px;
  border-radius: 5px;
  margin: 20px 0;
}

.menu-super li:after{
  content: url("./../../images/body/chevron.svg");
  position: absolute;
  width: 50px;
  left: -25px;
  top:7px;
}

/* ============================================== */
/* ROADMAP */
/* ============================================== */

.roadmap {
  width: 100%;
  position: relative;
  display: inline-block;
  margin-top: 40px;
}

.roadmap h2{
  margin: 0;
}

.roadmap .menu-list > li{
  color: var(--color-black);
}

.roadmap:after {
  content: " ";
  width: 3px;
  background: var(--color-complementary);
  height: 100%;
  position: absolute;
  left: 49.9%;
  top: 0;
}

.roadmap:before{
  content: " ";
  background: var(--color-complementary);
  height: 24px;
  width: 24px;
  position: absolute;
  left: 49.9%;
  top: 0;
  border-radius: 50%;
  margin-left: -10px;
}

.roadmap > li {
  width: 40%;
  display: block;
  float: left;
  box-sizing: border-box;
  text-align: left;
  padding: 20px 20px 20px 70px;
  position: relative;
  clear: both;
  border-radius: 20px;
  z-index: 2;
}

.roadmap > li span{
  position: absolute;
  left: -50px;
  top: 50%;
  margin-top: -50px;
  border-radius: 50%;
  text-align: center;
  width: 100px;
  height: 100px;
  z-index: 2;
  font-family: var(--f-family-h);
  font-size: var(--fs-h2);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap > li span,
.roadmap > li:nth-child(even) span{
  background: var(--color-black);
  color: var(--color-primary);
}

.roadmap > li,
.roadmap > li:nth-child(even){
  background: var(--color-complementary);
}

.roadmap > li,
.roadmap > li span{
  border: 3px solid var(--color-complementary);
}

.roadmap > li p{
  margin: 0;
}

.roadmap > li:after {
  content: " ";
  width: 0%;
  background: var(--color-complementary);
  height: 3px;
  position: absolute;
  right: -26%;
  top: 50%;
  transition:all 500ms ease;
}

.roadmap > li:nth-child(even):after {
  right: auto;
  left: -26%;
}

.roadmap > li:nth-child(even) {
  float: right;
  padding: 20px 70px 20px 30px;
}


.roadmap > li:nth-child(even) span{
  left: auto;
  right: -50px;
}

.roadmap > li.fade-roadmap{
  opacity: 0;
  transform:translateY(50px);
  position: relative;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  transition:all 500ms ease;
}

.roadmap > li.fade-roadmap.fade-in{
  opacity: 1;
  transform:translateY(0px);
}

.roadmap > li.fade-roadmap.fade-in:after{
  width: 26%;
}


@media screen and (max-width: 768px){
  .roadmap > li,
  .roadmap > li:nth-child(even) {
    width: 100%;
    clear: noone;
    border-radius: 10px;
    margin: 5px 0;
    padding: 40px 20px 20px;
    font-size: 16px;
  }

  .roadmap > li .menu-list li{
    padding: 5px 0 5px 40px;
  }

  .roadmap > li:after,
  .roadmap > li:nth-child(even):after{
    display: none;
  }

  .roadmap h2{
    font-size: 18px;
  }

  .roadmap > li span,
  .roadmap > li:nth-child(even) span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    margin-top:0;
    width: 50px;
    height: 50px;
    font-size: var(--fs-h4);
  }

}

/* ============================================== */
/* ACCORDION */
/* ============================================== */

.p-0-30{
  padding: 0 30px;
}

#accordion{
  margin: 50px 0;
}

#accordion .ask {
  margin: 0;
  position: relative;
  border-bottom: 1px solid var(--color-silver);
  cursor: pointer;
  color: var(--color-black);
  transition:all 125ms ease;
}

#accordion .ask:hover{
  background: var(--color-soft);
}

#accordion .ask,
#accordion .answer {
  padding: 20px 30px;
  width: 100%;
}

#accordion .ask{
  padding: 20px 60px 20px 30px;
}

#accordion > li,
.ask:after{
  -webkit-transition:all 350ms ease;
  -moz-transition:all 350ms ease;
  -ms-transition:all 350ms ease;
  transition:all 350ms ease;
}

.ask:after{
  position: absolute;
  content: url("./../../images/icons/body/arrow.svg");
  right: 20px;
  width: 20px;
  height: 20px;
  top:50%;
  transform: translateY(-50%) rotate(180deg);
}

#accordion > li.open{
  background: var(--color-complementary);
}

#accordion > li.open .ask:after{
  transform: translateY(-50%) rotate(90deg);
}

#accordion > li.open .answer{
  background: var(--color-soft);
}

#accordion > li.open .icon.arrow:after{
  height: 0;
}

#accordion .answer {
  display: none;
  background: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 768px){
  #accordion{
    margin: 30px 0;
  }
  #accordion .ask{
    padding: 10px 60px 10px 30px;
  }
}

/* ============================================== */
/* TEASER VERTICAL */
/* ============================================== */

.teaser-vertical li{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 70%;
  margin: 0 auto;
}

.teaser-vertical li > div{
  padding: 20px;
  width: 40%;
}

.teaser-vertical li .info{
  border-radius: 10px;
  margin-left: 30px;
  position: relative;
  border: 3px solid var(--color-complementary);
}

.teaser-vertical li .info:after{
  position: absolute;
  content: url("./../../images/icons/body/arrow_left.svg");
  left: -25px;
  width: 25px;
  height: 50px;
  top:50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px){
  .teaser-vertical li,
  .teaser-vertical li > div{
    width: 100%;
    text-align: center;
  }

  .teaser-vertical li > div img{
    margin: 0 auto;
  }

  .teaser-vertical li .info{
    margin-left: 0;
    margin-top: 30px;
  }
  .teaser-vertical li .info:after{
    left: 48%;
    top:-40px;
    transform: translateY(0) rotate(90deg);
  }
}

/* ============================================== */
/* CIRCULOS */
/* ============================================== */

.circulos{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 100px 0;
}

.circulos li:last-child{
  background: var(--color-light-blue);
}

.circulos li:last-child :is(h3,p){
  color: white;
}

.circulos li:last-child span{
  color: var(--color-blue);
}

.circulos li :is(h3,p){
  color: var(--color-blue);
}

.circulos li span{
  color: var(--color-light-blue);
}

.circulos li{
  text-align: center;
  width: 500px;
  padding: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background: white;
  height: 500px;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circulos span{
  font-weight: 600;
}

@media screen and (max-width: 768px){
  .circulos{
    flex-direction: column;
    gap: 30px;
    margin:30px 0;
  }
  .circulos li{
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    display: block;
    height: auto;
  }

}

/* ============================================== */
/* GRAFICA */
/* ============================================== */

.grafica {
  width: 100%;
  height: 2px;
  margin-top: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.grafica,
.grafica span{
  position: relative;
  background: black;
}

.grafica span{
  width: 2px;
  height: 20px;
}

.grafica span:after{
  position: absolute;
  top:20px;
  left: -8px;
}

.grafica span:nth-child(1):after{  content: "0%";  }
.grafica span:nth-child(2):after{  content: "10%";  }
.grafica span:nth-child(3):after{  content: "20%";  }
.grafica span:nth-child(4):after{  content: "30%";  }
.grafica span:nth-child(5):after{  content: "40%";  }
.grafica span:nth-child(6):after{  content: "50%";  }
.grafica span:nth-child(7):after{  content: "60%";  }
.grafica span:nth-child(8):after{  content: "70%";  }
.grafica span:nth-child(9):after{  content: "80%";  }
.grafica span:nth-child(10):after{  content: "90%";  }
.grafica span:nth-child(11):after{  content: "100%";  }
.grafica span:nth-child(12):after{  content: "110%";  }
.grafica span:nth-child(13):after{  content: "120%";  }
.grafica span:nth-child(14):after{  content: "130%";  }
.grafica span:nth-child(15):after{  content: "140%";  }

@media screen and (max-width: 1440px){
  .grafica {
   flex-direction: column-reverse;
   width: 2px;
   height: 360px;
  }
  .grafica span:after{
    top:-10px;
    left: auto;
    right: -40px;
    font-size: 12px;
  }

  .grafica span{
    width: 20px;
    height: 2px;
  }


}

/* ============================================== */
/* PROGRESS BAR */
/* ============================================== */

@media only screen and (max-width:1079px){
  .progress-img{
    max-width: 520px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.progress-bar{
  width: 100%;
  padding: 5px;
  background: var(--color-soft);
  display: flex;
  justify-content: flex-start;
  border-radius: 30px;

}

.progress-bar span{
  background: rgb(8,0,150);
  background: linear-gradient(0deg, rgba(8,0,150,1) 0%, rgba(0,0,153,1) 35%, rgba(45,90,255,1) 81%, rgba(0,93,255,1) 84%, rgba(7,6,94,1) 100%);
  height: 50px;
  display: block;
  transition: width 0.5s ease-in-out;
  border-radius: 25px;
  position: relative;
}

.progress-bar span.kanacapital{border-radius: 25px 0 0 25px;}
.progress-bar span.kanacapital_2{
  border-radius: 0;
  background: rgb(255,190,0);
  background: linear-gradient(0deg, rgba(255,190,0,1) 0%, rgba(255,222,40,1) 70%, rgba(250,255,110,1) 82%, rgba(255,237,0,1) 100%);
}
.progress-bar span.kanacapital_3{
  border-radius: 0 25px 25px 0;
  filter: grayscale(100%);
}

.progress-bar span.banca,
.progress-bar span.cetes{
  filter: grayscale(100%);
  opacity: 0.7;
}

.progress-bar span.banca{
  width: 100px;
}
.progress-bar span.cetes{
  width: 180px;
}
.progress-bar span.kanacapital{
  width: 50%;
}
.progress-bar span.kanacapital_2{
  width: 21.5%;
}
.progress-bar span.kanacapital_3{
  width: 28.5%;
}

.progress-bar span:after{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  color: white;
  font-weight: bold;
}

.progress-bar span.kanacapital_2:after{
  color: var(--color-black);
}

.progress-bar span.banca:after        {  content: "6.7%";   }
.progress-bar span.cetes:after        {  content: "11.3%";  }
.progress-bar span.kanacapital:after  {  content: "Serie A 70%";    }
.progress-bar span.kanacapital_2:after{  content: "Serie A+ 100%";   }
.progress-bar span.kanacapital_3:after{  content: "Prime 140%";   }

.progress li:last-child .porcentaje{
    width: 100%;
}

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

  .progress li:last-child{
    text-align: center;
    margin-top: 40px;
  }

  .progress li:last-child .porcentaje{
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .progress li:last-child .porcentaje .progress-bar{
    width: 50%;
  }

  .progress li:last-child .progress-bar span{
    border-radius: 0;
    width: 100%;
  }
  .progress li:last-child .progress-bar{
    flex-direction: column-reverse;
    height: 360px;
    padding: 0;
  }

  .progress-bar span.kanacapital{
    height: 50%;
  }
  .progress-bar span.kanacapital_2{
    height: 21.5%;
  }
  .progress-bar span.kanacapital_3{
    height: 28.5%;
  }


}

@media screen and (max-width: 768px){
  .progress li p,
  .progress-bar{
    width:100%;
    margin-left: 0;
  }


  .progress li{
    margin: 10px 0;
  }

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

.pack{
  width: 98%;
  margin: 1%;
  padding: 30px 20px;
  text-align: center;
  border-radius: 40px;
  border: 8px solid var(--color-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #d1d9f7;
}

.pack.primary{
  border: 8px solid var(--color-primary);
  background: #ffd996;
}

.pack.prime{
  background: var(--color-black);
  border: 8px solid var(--color-primary);
  color: white;
}

.pack.prime h3,
.pack.primary h3{
  background: var(--color-primary);
}

.pack p:first-child{
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.pack h3{
  background: var(--color-blue);
  font-weight: bold;
  font-size: 36px;
  color: white;
  border-radius: 20px 20px 0 0;
}

.pack p{
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid var(--color-soft);
}

.pack p span{
  font-weight: bold;
  font-size: 64px;
}
@media screen and (max-width: 768px){
  .pack p span{
    font-weight: bold;
    font-size: 32px;
  }
}

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

.custom-select-wrapper{
  position: relative;
}
.custom-select-wrapper select {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.custom-select-wrapper{
  width: 100%;
}

.custom-select-trigger,
.custom-options {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

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

.custom-select-trigger:after {
  content: url("./../../images/icons/body/chevron.svg");
  display: block;
  position:absolute;
  right: 15px;
  top:10px;
  width: 24px;
  height: 24px;
  z-index: 2;
  transform: rotate(90deg);
}

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

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

.custom-options{
  -webkit-box-shadow: 0 50px 20px -40px var(--color-shadow);
  -moz-box-shadow: 0 50px 20px -40px var(--color-shadow);
  -ms-box-shadow: 0 50px 20px -40px var(--color-shadow);
  box-shadow: 0 50px 20px -40px var(--color-shadow);
}

.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-silver);  }

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

.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%;
  }
  .custom-select-trigger:after {
    top:8px;
  }
}

/* ============================================== */
/* ACCORDION */
/* ============================================== */


.banner-teaser button.slick-prev,
.banner-teaser button.slick-next{
  margin-top: -80px;
}

@media screen and (max-width: 1440px){
  .banner-teaser button.slick-prev,
  .banner-teaser button.slick-next{
    margin-top: -135px;
  }
}


/* ============================================== */
/* FORMS */
/* ============================================== */
.btn-submit{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
