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

:root{

/*-- Color  --*/

--color-pri:    #0049ff;
--color-pri-h:  #346eff;
--color-sec:    #495059;
--color-ter:    #53bc00;
--color-ter-h:  #489b00;

/*-- Font Family --*/

--f-family-h: "Michroma", serif;
--f-family:   "Chakra Petch", 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-90);  }
p,li                 {  color: var(--color-40);  }

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

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

body{
  background: var(--color-100);
}
/* ============================================== */
/* 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;
  background-size: contain;
  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);  }
.btn.c-sec{  background: var(--color-sec);  }
.btn.c-ter{  background: var(--color-ter);  }
.btn.c-pri:hover{  background: var(--color-pri-h);  }
.btn.c-sec:hover{  background: var(--color-60);  }
.btn.c-ter:hover{  background: var(--color-ter-h);  }

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

.btn.btn-ol-0{
  border: 2px solid white;
}

.btn.btn-ol-0-blue{
  border: 2px solid var(--color-pri);
}

.btn.btn-ol-100{
  border: 2px solid black;
}

.btn.btn-ol-0,
.btn.btn-ol-100,
.btn.btn-ol-0-blue{
  background: transparent;
}

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

.container {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 30px 30px 30px;
}

.container:after{
  content: "";
  background-image: url(./../../images/body/label_bottom.svg);
  overflow: hidden;
  position: absolute;
  height: 50px;
  width: 400px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.cover {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url('./../../images/hero/hero.jpg'); /* Reemplaza con la URL de tu imagen */
  background-size: cover;  /* Ajusta la imagen para que cubra todo el div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
}

.sub{
  background: rgba(0, 73, 255, 0.25);
  color: white;
  border-radius: 20px;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
}

#particles-js {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: transparent;
  z-index: 1;
}

@media screen and (max-width: 1080px){
  .container {
    padding: 60px 20px 20px 20px;
  }

  .container:after{
    height: 37px;
    width: 200px;
    bottom: 0;
  }

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

  .cover {
    background-position: 70% center;
  }
}

/* ============================================== */
/* BG */
/* ============================================== */

.bg-gradient {
  background: radial-gradient(circle, var(--color-pri) 0%, transparent 40%);
}

.bg-linear {
    background: linear-gradient(to bottom, black 0%, var(--color-95) 50%, black 100%);
}

.boder{
  border: 1px solid var(--color-90);
}

.tc-span span{
  color: white;
}

.b-shadow{
  box-shadow: 0 25px 10px -20px rgba(0, 0, 0, 1.0);
}

.b-shadow:hover{
  box-shadow: 0 10px 15px 10px rgba(0, 0, 0, 0.3);
}

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

:root{
  --cantidad:11;
  --altura:150px;
  --ancho:200px;
}

.logos li img{
  object-fit: cover;
}

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

.logos {
  width: 90%;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  height: var(--altura);
  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)
  );
}

@keyframes scrollLeft {
  to {
    left: calc(var(--ancho) * -1);
  }
}

.item {
  width: var(--ancho);
  height: var(--altura);
  position: absolute;
  left: max(calc(var(--ancho) * var(--cantidad)), 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  border-radius: 10px;
  overflow: hidden;
}

.item1 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 1) * -1);  }
.item2 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 2) * -1);  }
.item3 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 3) * -1);  }
.item4 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 4) * -1);  }
.item5 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 5) * -1);  }
.item6 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 6) * -1);  }
.item7 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 7) * -1);  }
.item8 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 8) * -1);  }
.item9 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 9) * -1);  }
.item10 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 10) * -1);  }
.item11 {  animation-delay: calc(30s / var(--cantidad) * (var(--cantidad) - 11) * -1);  }

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

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

/* ============================================== */
/* TEASER-BORDER */
/* ============================================== */

:root{
  --rad-20: 30px;
}

.teaser-boder li{
  background: var(--color-95);
  padding:40px;
  width: 100%;
  border-radius: 30px 40px 30px 30px;
  position: relative;
}

.teaser-boder li span{
  position: absolute;
  top:0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--color-100);
  border-radius:0 var(--rad-20) 0 var(--rad-20);
}

.teaser-boder li span:after,
.teaser-boder li span:before{
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  background-image: radial-gradient(circle at 0% 100%, var(--color-95) 20px, var(--color-100) 20px);
}

.teaser-boder li span:before{
  top: 0;
  left: -20px;
}

.teaser-boder li span:after{
  bottom: -20px;
  right: 0;
}


/* ============================================== */
/* V-CUSTOM */
/* ============================================== */

.parallax-container {
  position: relative;
  width: 400px;
  height: 400px;
  perspective: 1000px; /* Añade profundidad 3D */
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.1s;
  border-radius: 10px;
}

.layer:nth-child(1) {
  background: url("./../../images/body/img_01.png") no-repeat center center;
  background-size: contain;
  transform: translateZ(-50px); /* Capa más alejada */
}

.layer:nth-child(2) {
  background: url("./../../images/body/img_02.png") no-repeat center center;
  background-size: contain;
  transform: translateZ(-25px); /* Capa intermedia */
  animation: swing 2s infinite alternate ease-in-out;
}

.layer:nth-child(3) {
  background: url("./../../images/body/img_03.png") no-repeat center center;
  background-size: contain;
  transform: translateZ(0px); /* Capa más cercana */
}

@keyframes swing {
  0% { transform: translateZ(-25px) rotate(0deg); }
  50% { transform: translateZ(-25px) rotate(-30deg); }
  100% { transform: translateZ(-25px) rotate(30deg); }
}

@media screen and (max-width: 1080px){
  .parallax-container {
    width: 320px;
    height: 320px;
  }
}

/* ============================================== */
/* V-CUSTOM */
/* ============================================== */

:root{
  /* icon zise default: 24px
   icon wrap default: 45px */
   --Icon-size-b: 65px;
   --Icon-wrap-b: 80px;
 }

 .v-custom.icon-big{
  min-height: var(--Icon-wrap-b);
  min-width: var(--Icon-wrap-b);
}

.v-custom.icon-big::before {
  background-size: calc(var(--Icon-size-b) * 12);
  height: var(--Icon-size-b);
  width: var(--Icon-size-b);
}

.v-custom.icon-big.icon-1::before { background-position: calc(-1 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-2::before { background-position: calc(-2 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-3::before { background-position: calc(-3 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-4::before { background-position: calc(-4 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-5::before { background-position: calc(-5 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-6::before { background-position: calc(-6 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-7::before { background-position: calc(-7 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-8::before { background-position: calc(-8 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-9::before { background-position: calc(-9 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-10::before { background-position: calc(-10 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-11::before { background-position: calc(-11 * var(--Icon-size-b)) 0; }
.v-custom.icon-big.icon-12::before { background-position: calc(-12 * var(--Icon-size-b)) 0; }

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

.warning,
.success {
  padding: 10px 15px;
  border-radius: 5px;
  display: block;
  margin-bottom: 10px;
}

.warning {
  background: #FFCCCC;
  border: 1px solid #F7A7A7;
  color: #4F2222;
}

.success {
  background: #A3EF97;
  border: 1px solid #7FD072;
  color: #284F22;
}

