@import "bootstrap.min.css";
@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@font-face {
    font-family: "TT Firs Neue Variable";
    src: url("../Fonts/TT-Firs-Neue/Neue-Variable.ttf") format("truetype");
}

/* ROOT  >------------------------------------- */

:root{
    --font-primary: "Manrope", sans-serif !important;

    --color-cta: #000414; 
    --color-cta-hover: #2952CC;

    --color-btn: #000414;
    --color-btn-hover: #2952CC;

    --color-font-color: #1d2351;
    --color-font-midgray:#353535;
    --color-font-lightgray: #d2d3dc;
    --color-font-light:#fff;

    --color-detalles:#30E4F8;

    --color-bg-midgray: #e6e9f0;
    --color-bg-lightgray: #f2f4f7;
    --color-bg-dark: #080B1A;
    --color-bg-white:#FFF;

    --color-form-text:#595959;
    --color-form-stroke:#A5A7B9;
    --color-form-border-focus:#1d2351;
    --color-form-border-title:#FF7800;
    --color-form-error:#ED734E;
}

.ic-recuadro:hover {
transform: translateY(-.25rem);
transition: all 0.3s ease;
background-color: #8F48FA;
}
.ic-recuadro {
transition: all 0.3s ease;
}

.imghb {
   padding-right: 0px!important;
}


.degrade {
    background: #000414!important;
    z-index: -1;
}

  #media-container {
           min-width: 568px;
           height: 370px;
           background-image: url("../img/ic-lp-inagent-etapa1-natalia-lg.webp");
           background-position: 0px 0px;
           background-size: cover;
        }


/* 1) Animación reutilizable (fade + micro-traslade) */
@keyframes ic-fade-swap {
  0%   { opacity: 0; transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 2) Variable de estado impulsada por :has() (sin JS) */
.wrap { --ic-k: 0; }
.wrap:has(.menu .item.active[data-key="salud"])     { --ic-k: 1; }
.wrap:has(.menu .item.active[data-key="telco"])     { --ic-k: 2; }
.wrap:has(.menu .item.active[data-key="educacion"]) { --ic-k: 3; }
.wrap:has(.menu .item.active[data-key="turismo"])   { --ic-k: 4; }
.wrap:has(.menu .item.active[data-key="retail"])    { --ic-k: 5; }

/* 3) Textos dinámicos: fade suave cada vez que cambias de caso */
#titulo,
#descripcion{
  will-change: opacity, transform;
  /* El pequeño término con var(--ic-k) hace que la animación se "reinicie" en cada cambio */
  animation: ic-fade-swap calc(240ms + (var(--ic-k) * 0.001ms)) ease-out both;
}

.ic-recuadro p .text-titulo{
color: #FFF;
font-family: Manrope;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 160%; /* 32px */
letter-spacing: 0.4px;
}

/* 4) Avatar (imagen): misma idea, un pelín más largo para que se note agradable */
#avatar .img-demos{
  display:block;
  will-change: opacity, transform;
  animation: ic-fade-swap calc(300ms + (var(--ic-k) * 0.001ms)) ease-out both;
}

/* 5) Accesibilidad: si el usuario prefiere menos movimiento, lo respetamos */
@media (prefers-reduced-motion: reduce){
  #titulo, #descripcion, #avatar .img-demos{
    animation: none !important;
  }
}

/* 6) (Opcional) Suavizado del trazo del conector al redibujar */
#link-path{
  transition: d 380ms ease, stroke 380ms ease; /* 'd' solo anima en algunos navegadores */
}

/* 7) Fallback si el navegador no soporta :has() (se mantiene un toque suave) */
@supports not selector(:has(*)){
  #titulo, #descripcion, #avatar .img-demos{
    transition: opacity 1s ease, transform 1s ease;
  }
}




.container {
    max-width: 1152px;
}

.btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active {
    background: white;
}

*{
    font-family: "Manrope", sans-serif;
}

body {
    margin: 0;
    padding: 0; 
    background-color: #000414;
}


.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 0px!important;
    padding-left: 0px!important;
}

a:hover {
    color: var(--color-cta-hover);
    text-decoration: none!important;
}

.custom-select {
    background: transparent url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center !important;
    border: 1px solid #C1CCFD!important;
    background-size: 8px 10px!important;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.linea {
    background: #C1CCFD;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 0px;
}

.ic-text-link {
    text-decoration: none;
    margin-right: 20px;

    color: #FFF;
    text-align: center;
    font-family: "TT Firs Neue Variable";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    }


    a.ic-text-link:hover {
    color: #FFF;
    }
/* nav  >------------------------------------- */

nav {
    height: 84px;
    -webkit-box-shadow: 0 0 15px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 15px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px -1px rgba(0, 0, 0, 0.2);
    background-color: #000414;
}

.navbar-brand img,
footer img[src*=".svg"] {
    width: 100%;
    max-width: 150px;
}

.navbar-brand img[src*=".svg"] {
    width: 132px; 
}

.form-control {
    padding: 25px 15px 25px 15px;
}

.nav-ic-text {
    font: 600 13px/22px var(--font-primary); 
    margin:0px!important;
    color: var(--color-form-text);
    opacity:1;
    padding: 0;
}
.ic-text-bajada {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 155.556% */
    margin: 15px 0px 20px 0px;
}

.btn {
  margin-top: 36px;
}
  .wrap{
    gap:75px; align-items:center;
    margin-left: 50px;
    z-index: 100;
    margin-top: 10px;
  }
    
  .op, .item { color: #fff;}

  .op, 
  .item {
    text-align: left;
    min-width: 120px;
    min-height: 31px;
    border-radius: 5.638px;
    background: rgba(202, 213, 255, 0.20);
    border: 1px solid transparent;
    padding: 7.05px 15px;
    margin-bottom: 40px;
  }
.op span, .item span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .item.active{
    border-radius: 5.638px;
    background: #8F48FA;
    transition: all 0.3s ease;
   
  }
    .op.active{
    border-radius: 5.638px;
    border: 1px solid #8F48FA;
    background: rgba(202, 213, 255, 0.20);
      transition: all 0.3s ease;
  }

  .degrade {
   
    background: radial-gradient(50% 70% at 0% 80%, rgba(143, 72, 250, 0.70) 0%, rgba(0, 4, 20, 0.70) 100%);
    z-index: -1;
    }

.mid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 319px;
    height: 319px;
}

.right{display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:end;
}
#link-layer{ position:absolute; inset:0; pointer-events:none; }
#link-svg{ width:100%; height:100%; display:block; }
#link-path{
  fill:none;
  stroke:#7F4BFF;
  stroke-width:2.5;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 6px rgba(127,75,255,.35));
  /* redondeado real en vértices y puntas */
  stroke-linejoin:round;
  stroke-linecap:round;
  z-index: 10;
}

#link-layer,
#link-layer .link-demos,
#link-svg {
  pointer-events: none;
}


.btn-ic-llamada,
.btn,
.menu .item,
.op,
a.btn-ic,
button,
.navbar-brand {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.icon-boton {
display: flex;
width: 30px;
height: 30px;
margin-right: 10px;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 6px;
background: rgba(202, 213, 255, 0.30);
}

.link-demos {
    position: relative;
    z-index: 10;
} 
.img-demos {
    position: relative;
    z-index: 100;
    width: 380px;
}

/* text  >------------------------------------- */

p.ic-amarillo {
    color: #F0FF41!important;
}

.ic-text-muted{
    color: var(--color-font-lightgray) !important;
    }
    
.ic-text-blue{
    color: var(--color-font-color);   
}
    
.ic-text-darkgray{
    color: var(--color-font-midgray);
}

.ic-text-white{
    color:var(--color-font-light);
}

.footer-bottom {
    padding-bottom: 30px;
}
/* bg >------------------------------------- */

.ic-bg-dark{
    background-color: var(--color-bg-dark);
}

.ic-bg-blue{
    background-color: var(--color-font-color); 
}

.ic-bg-white{
    background-color: var(--color-bg-white);
}

.ic-herobanner {
    z-index: 100;
    margin-top: 35px;
}

.ic-gradiente-home {
    background: url(assets/img/background-home.webp) no-repeat top center;
    position: absolute;
    top: -320px;
    right: 247px;
    width: 1235px;
    z-index: 50;
    overflow: hidden;
}
.ic-video-home {
    position: relative;
    z-index: 100;
    border-radius: 30px 30px 0px 0px;
    margin-top: 30px;
}

.Second-Fold {
    position: relative;
    z-index: 100;

}


.ic-bg-img{
   /*background: url(../img/ic-lp-infuunel-bg-lg.webp) no-repeat top center;*/
    background-color: #000414;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.ic-bg-light-gris{
    background-color: var(--color-bg-midgray);
}




/*---------------------------------------------------------------- banner */

.gradient-line
{
    width: 532px;
    height: 4px;
    background: rgb(51,102,255);
    background: linear-gradient(90deg, rgba(51,102,255,1) 0%, rgba(51,102,255,0) 100%);
    border-radius: 2px;
    margin-top: -5px;

}
.ic-obligatorio {
margin-top: -130px;
}

.gradient-line2
{
    width: 290px;
    height: 4px;
    background: rgb(51,102,255);
    background: linear-gradient(90deg, #D3DDFF 5%,#fff 100%);
    border-radius: 2px;
    margin-bottom: 43px;
    margin-top: -5px;

}

.mx-mobile {
    z-index: 100;
}

.full-fold {
    padding: 33px 0px 0px 0px;
    /* padding: 93px 0px 0px; */
}

.ic-text-zindex {
    position: relative;
    z-index: 100;
}

.conteiner2{
    max-width: 1140px;
    margin: auto;
}

.ic-gradient-Fold3 {
    border-radius: 1171px;
    background: radial-gradient(70.75% 50% at 50% 50%, rgba(240, 255, 65, 0.50) 0%, #FFF 100%);
    filter: blur(76.3420639038086px);
    width: 1171px;
    height: 1171px;
    flex-shrink: 0;
    z-index: 50;
    position: absolute;
    margin-top: 180px;
}

.Second-Fold2 {
    position: relative;
    z-index: 100;
}

.garner-fold1 {
    /* height: auto; */
    padding: 50px 15px 37px 15px;
    max-width: 665px;
    /* padding: 93px 0px 0px; */
    height: calc(100vh - 940px);
    min-height: 200px;
}


.garner-fold p{
    font-size: 12px;
    line-height:15px;
    font-weight: 400;
}

h1 {
    text-align: center;
    font-family: "TT Firs Neue Variable";
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 62.4px */
    color: #fff;
}

h1 span {
    font-family: "TT Firs Neue Variable";
    font-size: 42px;
    font-style: normal;
    font-weight: 500!important;
    line-height: 110%; /* 62.4px */
background: linear-gradient(90deg, #C1CCFD 21.63%, #8F48FA 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}



.ic-img-media-2 {
    margin: 0px 0px 0px auto;
    background-image: url("../img/ic-lp-es-hb-landing-paid-media-lg@2x.webp");
    height: 673px!important;
    overflow: hidden;
    background-size: cover;
    background-position: left;
    /* top: 0px; */
    /* z-index: 1000; */
}


.ic-img-media {
    margin: 0px 0px 0px 0px;
    overflow: hidden;
}

h2 {
    color: #fff;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
     font-family: "TT Firs Neue Variable";
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: 120%; /* 142.857% */
    margin-bottom: 5px;
}

h2 span {

    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "TT Firs Neue Variable";
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    top: 0px;
    position: absolute;
    }

h3 {
    color: #000414;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "TT Firs Neue Variable";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 52.8px */
}

p.lead {
    font-size: 46px;
    line-height:50px;
    font-weight: 800;
    margin-top:0px;
}

h2+p {
    color: #151219;
text-align: center;
/* Text/Body L */
font-family: Manrope;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
letter-spacing: 0.32px;
}

p {
    font-size: 18px;
    line-height:28px;
    font-weight: 400;
    padding-bottom: 0px!;
    margin-bottom: 0vh!;
}



.text-last{
    margin-bottom: 0px;
}

.logo-gartner{
    width: 101px;
    height: 24px;  
}

.text-banner-logo{
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 0;
}

/*---------------------------------------------------------------- form */

h3.ic-form-title {
    border-radius: 8px 8px 0 0; 
    border-bottom: 0px; 
}

h3.ic-form-title > div.img-wrapper {
    border-top: 2px solid #FF6666; 
    margin-top: 20px;
}

.ic-dynamic-form{
    background-color: white;
    padding:40px 29px 14px 22px!important;
    margin: 0px 0px 0px 0px;
    border-radius: 20px;
    /*width: 356px;*/
    box-shadow: 0px 6px 25px 0px rgba(0, 18, 255, 0.08);
}

/* buttons   >------------------------------------- */

.btn {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
    border-radius: 4px;
    padding: 15px 24px ;
    letter-spacing: 0.5px;
}


.btn2 {
    font-size: 13px;
    padding: 10px 24px;
    height: 48px;
    text-decoration: none;
    background-color: #3366ff;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.btn3 {
    font-size: 15px;
    padding: 15px 30px;
    text-decoration: none;
    background-color: #3366ff;
    color: #fff;
    border-radius: 6px;
    width: 235px;
}
 
.btn2:hover {
    background-color: #2952CC;
    color: #fff;
}

.btn3:hover {
    background-color: #2952CC;
    color: #fff;
}

.btn.focus, .btn:focus {
    box-shadow: none;
}
a.btn-ic-white, 
a.btn-ic {
    text-decoration: none!important;
}

.ic-banner-blue {
    height: 130px;
    flex-shrink: 0;
    padding: 0px 0px 0px 0px;
}

.ic-banner-blue p {
color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Open Sans";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 42px; /* 233.333% */
margin-bottom: 16px;
}

.btn-success,
.btn-ic {
    color: #000414!important;
    background-color: var(--color-btn);
    border-color: var(--color-btn);
}

.ic-class-form-button-submit.btn.btn-success:hover,
.btn-ic:hover {
    color: #FFF!important;
    background-color: var(--color-btn-hover) !important;
    border-color:  var(--color-btn-hover) !important;
}

.ic-class-form-button-submit.btn.btn-success {
    margin-top: 0;
}

div.Mobile {
    padding: 15px 0;
    z-index: 20;
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}
.transicao-animacao {
    transition: all 0.5s ease;
}

.button-fixed{
    position:fixed;
    bottom:0px;
    left:0px;
    right:0px;
    margin-bottom:0px;
   /* box-shadow: 0px 0px 8px #222222;*/
}

/* ripple  >------------------------------------- */

.btn-ic,
#submit-btn{
    background-color: var(--color-btn);
    border: solid 0px var(--color-btn) ;
    color: #fff;
    border-radius: 8px!important;
   /* -webkit-box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 10%);*/
   /* box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 10%);*/
    transition: all .3s ease;
    -webkit-transition: all .5s ease;  
    position: relative;
    overflow: hidden;  
}

.btn-ic:hover,
#submit-btn:hover,
.btn-tablet:hover {
    background-color: var(--color-btn-hover);
    color: #fff;
    text-decoration: none!important;
    transform: translateZ(5px);
    position: relative;
    overflow: hidden;
}

.btn-ic:after,
#submit-btn:after,
.btn-tablet:after {
  content: "";
  width: 0px;
  /*height: 200px;*/
  background: var(--color-btn-hover);
  transition: all .3s ease;
  -webkit-transition: all .5s ease;
  left: 50%;
  top: calc(50% - 100px);
  z-index: -200;
  border-radius: 100%;
  position: absolute;
}

.btn-ic:hover:after,
#submit-btn:hover:after,
.btn-tablet:hover:after {
  content: "";
  background: var(--color-btn-hover);
  border-radius: 100%;
  width: calc(100% + 30px);
  height: 200px;
  left: calc(0% - 15px);
  top: calc(50% - 100px);
}

a.btn-tablet:hover,
a.btn-tablet:after,
a.btn-tablet:hover:after{
    color: #fff!important;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: var(--color-cta-hover);
    text-decoration: underline;
}

.btn-tablet{
    min-width:210px;
    max-width:100%;
    text-decoration: none;
    margin-top: 30px;
    margin-bottom: 38px;
}

.form-check-inline {
    margin-right: 5px!important;
}

html {
    scroll-behavior: smooth;
  }

  .ic-class-form-button-submit.btn.btn-success {
    margin-top: 10px;
    margin-bottom: 10px;
    /* margin-left: 0px; */
    width: 285px;
    height: 55px;
    }
/*---------------------------------------------------------------- pre-footer */

section.pre-footer{
    padding-top: 30px;
    padding-bottom: 0;
}

.pre-footer a{
    text-decoration: none;
}

.pre-footer .btn.btn-ic-color{
    background-color: #11142e;
    border:2px solid var(--color-detalles);
    color: var(--color-detalles);
    margin-left: 40px;
}

.pre-footer .btn.btn-ic-color:hover{
    color: var(--color-detalles);
    opacity: .9;
}

.pre-footer p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 600;
}

span.ic-gradient-wrapper{
    background-color: #d2d3dc;
    height: 1px;
    width: 100%;
    /*background: linear-gradient(90deg,  #595959 0% ,  #d2d3dc 25%, #A5A7B9 50%, #595959 100%);*/
    margin-top: 30px;
}

.img-flechita {
    width: 16px;
    height: 12px;
    -moz-animation: bounces 1s infinite;
    -webkit-animation: bounces 1s infinite;
    animation: bounces 1s infinite
}

@-moz-keyframes bounces {
    0%,100% {
        -moz-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -moz-transform: translateX(5px);
        transform: translateX(5px)
    }
}

@-webkit-keyframes bounces {
    0%,100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px)
    }
}

@keyframes bounces {
    0%,100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(5px)
    }
}

.ic-row {
    margin-right: 0px!important;
    margin-left: 0px!important;
}


/*---------------------------------------------------------------- footer */

footer p{
    padding-top: 25px;
    height: 69px;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 0px;
}

footer a{
    color: #ffffff;
    text-decoration: underline;
}


/*---------------------------------------------------------------- modal */

.modal {
    z-index: 99999;}

.close {
    width: 32px;
    height: 32px;
    font-size: 25px; 
    text-shadow: none;  
}

.close:focus, .close:hover{
    outline: none;
}

.img-form{
    margin: 18px auto 0px auto;   

}

.img-mano {
    margin-left: 8px;
    -moz-animation: bounceY 1.5s infinite;
    -webkit-animation: bounceY 1.5s infinite;
    animation: bounceY 1.5s infinite;
}
@-moz-keyframes bounceY {
    0%,
    50%,
    100% {
        -moz-transform: translateY(0) translateX(0px);
        transform: translateY(0) translateX(0px);
    }
    25% {
        -moz-transform: translateY(5px) translateX(5px);
        transform: translateY(5px) translateX(5px);
    }
}
@-webkit-keyframes bounceY {
    0%,
    50%,
    100% {
        -webkit-transform: translateY(0) translateX(0px);
        transform: translateY(0) translateX(0px);
    }
    25% {
        -webkit-transform: translateY(5px) translateX(5px);
        transform: translateY(5px) translateX(5px);
    }
}
@keyframes bounceY {
    0%,
    50%,
    100% {
        transform: translateY(0) translateX(0px);
    }
    25% {
        transform: translateY(5px) translateX(5px);
    }
}

.ic-img-logo-tele {
    width: 160px;
    height: 38px;
    margin-bottom: 34px;
}

/*---------------------------------------------------------------- media queries */


@media (max-width: 767px){

    /* Chevron para selects móviles */
#mobile-controls .select-wrap {
  position: relative;
  display: inline-block;
}

/* Flecha (chevron) — SVG inline para nitidez */
#mobile-controls .select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* Chevron DOWN (negro #000414 sobre fondo blanco) */
  background-image: url('data:image/svg+xml;utf8,\<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">\<path d="M5 8l5 5 5-5" fill="none" stroke="%23000414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>\</svg>');
  opacity: .9;
}

#mobile-controls .select-wrap[data-open="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}


    .icon-boton {
    display: flex;
    /* width: 30px; */
    /* height: 30px; */
    padding: 5px;
    margin-right: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: rgba(202, 213, 255, 0.30);
}
.btn-ic-llamada {
    padding: 6px 8px 6px 6px!important;  
}
    section{
        padding: 0px;
    } 
    .full-fold {
        min-height: 488px;
        height: calc(100vh - 150px);
        padding: 35px 0px 0px 0px;
    }

    .wrap {
    margin-bottom: 52px;
    }

    .gradient-line2
    {
    width: 220px;
    height: 2px;
    margin-top: -5px;
    margin-bottom: 7px;
    }

    .gradient-line3
    {
        width: 124px;
        height: 2px;
        background: rgb(51,102,255);
        background: linear-gradient(90deg, rgba(51,102,255,1) 0%, rgba(51,102,255,0) 100%);
        border-radius: 2px;
        margin-top: -5px;
        margin-bottom: 33px;
    }


    .garner-fold1 {
        /*height: auto;*/
        padding: 40px;
        max-width: 707px;
        /*padding: 93px 0px 0px;*/
    }
    
    
    .garner-fold p{
        font-size: 12px;
        line-height:15px;
        font-weight: 400;
    }
 
    .nav-ic-text {
        font: 700 11px/16px var(--font-primary);
        margin: 0 !important;
        color: var(--color-form-text);
        white-space: nowrap;
    }

    p.lead{
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 0;
        margin-top: 0;
    }

    h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom:22px;
    }

   

    h2 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom:30px;
    }

    h3 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom:0px;
        font-weight: 700;
        }
    


    p{
        font-size: 14px;
        line-height: 24px;
    }

    .text-last{
        margin-bottom: 12px;
    }
    
    .img-dos {
        max-width:100%;
        /*align-self: center;*/
        margin: 0 auto 0px auto; 
    }

    .Mobile .btn-ic > span{
        margin-left: 28px;
    }

   .mx-mobile {
    padding-left: 30px;
    padding-right: 30px;
    min-height: 620px;
    height: 80vh;
    z-index: -1;
}
    .ic-dynamic-form-container{
        box-shadow:none;
        margin-top:0px;
        margin-bottom:0px!important;
        padding-bottom:0;
    }

 

    .pre-footer p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
        margin-top: 10px;
    }
    .pre-footer .btn.btn-ic-color{
        margin-left: 0px;
        margin-bottom: 40px;
    }

    .pre-footer span.ic-gradient-wrapper{
        display: none;
    }

    .Mobile .btn-ic {
        padding: 8px 24px ;
    }

    .img-flechita {
        display: none;
    }

    .garner-fold1 {
        min-height: 245px;
    }

   
    .navbar-brand img, footer img[src*=".svg"] {
        width: 125px!important;
        height: 20px!important;

}
}
@media all and (min-width: 320px) and (max-width: 767px){

    
footer p{
    margin-bottom: 20px;
}
    .full-fold {
        padding: 60px 0px 0px 0px;
    }
    h1 {
        font-size: 23px!important;
        font-weight: 700;
        line-height: 38px;
        margin-bottom: 26px;
        text-align: center;
        color: #151219!important;
    }
    h1 + p {
        text-align: center;
    }
    .ic-img-logo-tele  {
       text-align: center;
       margin-bottom: 32px;
    }

    .ic-img-logo-tele {
        width: 147px!important;
        height: 35px;
  }

  p {
    padding-bottom: 40px;
}

nav {
   
    background: transparent!important;
    border: 0px!important;
}
}



@media all and (min-width: 768px) and (max-width: 1199px){

    nav {
   
    background: transparent!important;
    border: 0px!important;
}

    section{
        padding: 50px 0px 0px 0px;
    } 

    .conteiner2{
        max-width: 720px;  
    }

    .garner-fold1 {
        /* height: auto; */
        padding: 50px 15px 37px 15px;
        max-width: 665px;
        /* padding: 93px 0px 0px; */
        height: calc(100vh - 787px);
        min-height: 200px;
    }

    .full-fold {
        height: auto;
        min-height: 511px;
        padding: 52px 0px 0px 0px;
    }

    .gradient-line2
    {
    width: 600px;
    height: 4px;
    margin-bottom: 33px;
    margin-top: -5px;
    }
    
    .img-form {
        display: block;
    }

  

    p.lead,
    h1 {
        margin-bottom:32px;
        line-height: 40px;
        margin-top: 0;
    }

    h2 {
        font-size: 30px;
        margin-bottom:0px;
        line-height: 40px;
    }

    h3 {
        font-size: 30px;
        margin-bottom:0px;
        line-height: 40px;
        margin-bottom: 23px;
    }

    h1{
        font-size: 30px;
        margin-bottom:30px;
    }

    p{
        font-size:16px;
        line-height:26px;
        margin-bottom: 45px;
    }

    .text-last{
        margin-bottom: 0px;
    }

    .ic-dynamic-form-container {
        box-shadow: none;
        margin-top: 46px;
        margin-bottom: 60px;
        display: flex;
        justify-content: center;
    }
    h2 {
        margin-bottom: 30px;
    }
    .ic-img-media-2 {
        margin: 0px 0px 0px 0px;
    }
    .row {
        margin-right: 0px;
        margin-left: 0px;
    }

    h3.ic-form-title{
        padding: 0px 0px 0px 0px;
    }

    .pre-footer p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    
    .pre-footer .btn.btn-ic-color{
        margin-left: 0px;
    }
        
}


@media all and (max-width: 1200px){
    .btn-block,
    a.btn-block:not([href]):not([tabindex]){
        color: #ffffff;
        background-color: transparent;
        border-color: transparent;
        font-size: 16px;
        height: 71px;
        padding: 17px;
        display: inline-block;
        font-weight: 600;
        box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, 0.171);
    }
}


/*--------------------------------------------------------------------------------------------------------------------------
SVG Images DeBug 
--------------------------------------------------------------------------------------------------------------------------*/

/* Ie9 */
.ie9 img[src*=".svg"] {
	width: auto;
	max-width: initial;
}

 /* Ie10 + Firefox & Others */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	img[src*=".svg"]{width: auto;max-width: initial;}
}

@media screen and (max-width: 480px) {
	img[src*=".svg"]{width: auto;max-width: initial;}
}

.form-check-inline {
    align-items: flex-start!important;
}



@media all and (min-width: 320px) and (max-width: 767px){
    p {
        margin-bottom: 1vh;
    }

    /* 1) Reset global de enlaces: evita azules/púrpuras de Safari */
a,
a:link,
a:visited,
a:hover,
a:active {
  color: inherit !important;
  text-decoration: none !important;
}

/* 2) Fuerza blanco en los ítems de sectores (texto e ícono) */
.menu .item,
.menu .item span {
  color: #fff !important;
}
.menu .item svg path {
  fill: #fff !important;
}

/* 3) iOS: evita recoloración automática en modo oscuro */
:root { color-scheme: light; }  /* Indica que tu UI es “light” */
@supports (-webkit-touch-callout: none) {
  .menu .item,
  .menu .item span,
  .ic-text-link {
    -webkit-text-fill-color: #fff !important;
  }
}

/* 4) (Opcional) Quita el destello gris al tocar en iOS */
.menu .item { -webkit-tap-highlight-color: transparent; }

/* 5) Enlaces del footer en blanco sí o sí */
.ic-text-link,
.ic-text-link:link,
.ic-text-link:visited,
.ic-text-link:hover,
.ic-text-link:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}


/* Quita el “look” nativo que mete degradado/redondeo en iOS */
#mobile-controls select,
#mobile-controls .btn-ic-llamada,
button.btn-ic-llamada {
  -webkit-appearance: none;
  appearance: none;
}

/* iOS: bloquea el “auto dark mode” SOLO en estos elementos */
@supports (-webkit-touch-callout: none) {
  #mobile-controls .btn-ic-llamada,
  #mobile-controls .select-wrap,
  #mobile-controls select {
    color-scheme: light;          /* no oscurezcas el control, mantenlo light */
    -webkit-text-fill-color: currentColor;
  }
}

/* (Opcional) también para el botón de escritorio, mismo look blanco */
#btnVideo-desktop.btn-ic-llamada {
  background: #fff !important;
  background-color: #fff !important;
  color: #000;
  border: 1px solid rgba(0,0,0,.15);
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none !important;
}


    
.ic-bg-img{
    background: url(../img/ic-lp-RFP-telefonica-bg-@2x.webp) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}
}

@media all and (min-width: 768px) and (max-width: 1199px){

    .full-fold {
        padding: 60px 0px 0px 0px;
    }

    h1 {
        font-size: 42px;
        line-height: 52px;
        text-align: center;
        margin-bottom: 34px;
    }
    h1 + p {
        text-align: center;
    }
    .ic-img-logo-tele  {
       text-align: center;
    }

    .ic-img-logo-tele {
        margin-bottom: 40px;
    }
    p {
        margin-bottom: 2vh;
    }

}

@media all and (min-width:1200px) and (max-width: 1439px){
    p {
        margin-bottom: 0px;
    }
}

@media all and (min-width: 1440px){
    p {
        margin-bottom: 6vh;
    }
}

@media all and (min-width:768px) and (max-width: 1199px){
    .ic-img-media-2 {
        background-image: none;
    }
}


@-webkit-keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-1760px * 3));
	}
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-1760px * 3));
	}
}

.background-black {
    background: #000414;
    padding: 20px 0px 20px 0px;

}

.slider {
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.slider::before,
.slider::after {
	content: "";
	height: 76px;
	position: absolute;
	width: 200px;
	z-index: 2
}

.slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg)
}

.slider::before {
	left: 0;
	top: 0
}

.slider .slide-track {
	animation: scroll 120s linear infinite;
	display: flex;
	width: calc(1860px * 3);
}

.ic-mr-90 {
    margin-right: 90px;
}


.ic-card-Media-funcionalidades {
    width: 451px;
    height: 155px;
    align-items: center;
    padding: 35px 40px;
    border-radius: 12px;
    border: 1px solid rgba(170, 187, 255, 0.20);
    background:rgb(244 246 255);
    background: linear-gradient(46deg, rgba(211, 221, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0px 0px 15px 0px rgba(51, 102, 255, 0.10);
    margin-bottom: 15px;
    padding: 27px 40px 27px 40px;
}

 .card-deck {
    display: flex;
    flex-flow: column;
    margin-right: 0px;
    margin-left: 0px;
    justify-content: center;
}

.ic-img-Media {
    margin: 10px 0px 0px 21px;
}

.ic-icono-productos-wrap {
background-color: #fff;
border-radius: 50%;
padding: 18px;
width: 78px;
height: 78px;
flex-shrink: 0;
margin: auto 20px auto 0px;
box-shadow: 0px 0px 15px 0px rgba(51, 102, 255, 0.10);
}


h3 {
color: #273480;
leading-trim: both;
text-edge: cap;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 25px; /* 138.889% */
margin-bottom:0px;
}

h3 + p {
color: #353535;
leading-trim: both;
text-edge: cap;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
margin-bottom:0px;
padding-bottom: 0px;
}

.ic-ultimo-fold {
padding-bottom: 65px;
}
.ic-img-Media-mobile {
    margin: 40px 0px 0px 0px;
}


.wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 89vh;
    right: 0px;
    z-index: 200;
}

.cta2 {
    position: relative;
    margin: auto;
    padding: 0 0;
    transition: all 0.5s ease;
}
.cta2:before {
    content: "";
    position: absolute;
    top: 0px;
    right: -57px;
    display: block;
    border-radius: 28px;
    background: #3366FF;
    box-shadow: 0px 0px 10px 0px #36f;
    width: 57px;
    height: 57px;
    transition: all 0.2s ease;
    z-index: 1;
}

.sticky-cta {
    margin: 0 70px -5px 0;
    position: relative;
    float: right;
    white-space: nowrap;
    overflow: hidden;
    z-index: 10;
    cursor: pointer;
    width: 74px;
    height: 74px;
}

.ic-sprite {
    width: 74px;
    height: 74px;
    background-repeat: no-repeat;
    background-image: url(../img/icon-lp-fab.svg);
}

.ic-icon-info {
    background-position: -8px -4px;
}

.cta2:hover:before {
    width: 265px;
    background: #3366FF;
    box-shadow: 0px 0px 0px 0px #36f;
}

.cta:hover svg {
    transform: translateX(0)
}

.cta2 .textStickyVisible {
    opacity: 0;
    transition: opacity 0.1s;
    position: absolute;
    right: -15px;
    width: 200px;
}

.cta2:hover .textStickyVisible {
	opacity: 1;
	transition: opacity 1s;
	cursor: pointer;
}

.cta2 span {
    color: #fff;
    top: 15px;
    right: 97px;
    position: absolute;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    vertical-align: middle;
    z-index: 150;
}

.ic-img-Media-mobile {
    margin: 0px 0px 0px 0px;
}

.Second-Fold {
    background: #fff;
    padding: 110px 0px 120px 0px;
}
.Second-Fold2 {
    background: #000414;
    padding: 57px 0px 120px 0px;
    gap: 20px!important;
    flex-shrink: 0;
    /*background: radial-gradient(50% 65% at 50% 60%, rgba(143, 72, 250, 0.70) 0%, rgba(0, 4, 20, 0.70) 100%);*/
    background-color: var(--surface--transparent);
    background-image: url(https://cdn.prod.website-files.com/66d052db781718d42caceaaa/68b9c2c52b4d94941ab3e82b_gradient.webp);
    background-position: 50% 20%;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    flex-flow: column;
    display: flex;
    position: relative;
    inset: 0% auto auto 0%;

}


.Tercer-Fold {
    padding: 100px 0px 120px 0px;
}


.Cuarto-Fold {
    background: #F7F4F9;
    padding: 57px 0px 120px 0px;
}


.Cuarto-Fold p {
   margin-bottom: 33px;
}


.Cuarto-Fold h2 {
   margin-bottom: 27px;
 }

 .Quinto-Fold {
    padding: 120px 0px 120px 0px;
}
.Second-Fold2.final h3, 
.Quinto-Fold h3 {
    margin-bottom: 50px;
}

.Second-Fold2.final {
border-radius: 40px 40px 0px 0px!important;
padding: 120px 0px 0px 0px;
}


.ic-banner-black {
background-color: #000414;
padding-bottom: 30px;
padding-top: 30px;

}

.ic-recuadro2 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    flex-shrink: 0;
    width: 192px;
    margin-right: 85px;
}

.ic-recuadro2 img {
    /* width: auto; */
    /* max-width: 360px; */
    /* min-width: 100px; */
    /* height: auto; */
    margin-right: 0px;
    backdrop-filter: blur(17.523052215576172px);
    box-shadow: 0px 6px 25px 0px rgba(0, 18, 255, 0.08);
    border-radius: 21px;
}


.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 5px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: #C1CCFD;
}
.carousel-indicators .active {
    background-color: #2C52FD;
}

.carousel-indicators {
    position: relative;
    /* right: 0; */
    /* bottom: 0px; */
    /* left: 0; */
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    /* margin-right: 15%; */
    /* margin-left: 15%; */
    list-style: none;
    margin-top: 65px;
    margin-bottom: 0px;
}

.ic-recuadro {
display: flex;
max-width: 373px!important;
height: 236px;
padding: 25px 30px 25px 30px !important;
flex-direction: column;
align-items: flex-start;
flex-shrink: 0;

border-radius: 23.431px;
background: rgba(202, 213, 255, 0.10);
box-shadow: 0 5.858px 24.407px 0 rgba(0, 18, 255, 0.08);
}

.ic-recuadro-last {
    margin-right: 0px;
}

.ic-recuadro p span{
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "TT Firs Neue Variable"!important;
    font-size: 60px!important;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 98.147px */
    margin-bottom: 0px;
}

.ic-recuadro2 p {
    color: #000414;
    /* Desktop/H4 Medium */
    font-family: "TT Firs Neue Variable";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    margin-left: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.ic-recuadro p {
color: #FFF;
font-family: Manrope;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 160%; /* 32px */
}

.ic-recuadro p.text-descripcion {
color: #FFF;
font-family: var(--font-family-Secondary, Manrope);
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 24px */
}

.ic-recuadro p.text-titulo {
margin: 7px 0px 8px 0px;
padding: 0px;
}

.flecha {
    margin: 0px 0px 0px auto;
}


.ic-recuadro-mejoras {
    display: inline-flex;
    height: 211px;
    max-width: 354px;
    min-width: 354px !important;
    width: auto;
    padding: 23px 30px 30px 30px !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    flex-shrink: 0;
    border-radius: 0px 0px 20px 20px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(51, 102, 255, 0.15);
}

.Tercer-Fold img{
    border-radius: 20px 20px 0px 0px;
}


.ic-recuadro-mejoras-last {
    margin-right: 0px;
}

.ic-recuadro-mejoras h2{
    color: #273480;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 65% */
    margin-bottom: -12px;
}

.ic-recuadro-mejoras p {
    color: #353535;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
}


.Second-Fold h2 {
    margin-top: 0px!important;
}

h1 + p {
    color:#273480;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin:18px 0px 0px 0px;
}

h1 + h2 {
    font-size: 28px;
    line-height: 40px;
    margin-top:5px;
    margin-bottom:0px;
    font-weight: 400;
}


.btn-ic {
    height: 43px!important;
    display: inline-flex!important;
    padding: 13px 24px;
    justify-content: center;
    align-items: center;
    color: #000414;
    text-align: center;
    font-family: "TT Firs Neue Variable";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    border-radius:8px!important;
    background: #fff;
    border-color:#000414;
}


.btn-ic-llamada {
    height: 43px!important;
    display: inline-flex!important;
    padding: 6px 15px 6px 6px;
    justify-content: center;
    align-items: center;
    color: #000414;
    text-align: center;
    font-family: "TT Firs Neue Variable";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    border-radius:8px!important;
    background: #fff;
    border-color:#000414;
    border: 0px;
}

button.btn-ic-llamada:hover {
    box-shadow: 0 0 30px 0 #fff;
}

    
.btn-outline-ic {
    width: 109px!important;
    height: 43px!important;
    display: inline-flex;
    padding: 9px 10px 7px 10px;
    justify-content: center;
    align-items: center;
    color: #000414;
    text-align: center;
    font-family: "TT Firs Neue Variable";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    border-radius:8px!important;
    border-color: transparent;
    border: 1px solid #000414;
}

.btn-ic-white {
    width: 125px!important;
    height: 43px!important;
    display: inline-flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    color: #020315;
    text-align: center;
    font-family: "TT Firs Neue Variable";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    border-radius: var(--radius-radius-md, 8px);
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #000414;
    border-radius:8px!important;
    border-color:#000414;
}
a.btn-outline-ic:hover, 
a.btn-ic-white:hover {
    color: #020315;
}

.Second-Fold2 h3 {
margin: 0px 0px 16px 0px;
}


.Second-Fold2-carrousel .ic-banner-black {
padding-bottom: 100px!important;
border-radius: 0px 0px 40px 40px;
}

h3 {
    color: #000414;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "TT Firs Neue Variable";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 52.8px */
}

h3 span  {
    background-image: linear-gradient(90deg, #F6C 12.62%, #BBC8FF 72.49%);
    background-clip: text;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    color: black;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "TT Firs Neue Variable";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 52.8px */
}

h4 {
    color:#FFF;
    font-family: "TT Firs Neue Variable";
    font-size: var(--font-size-md, 20px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    margin-top: 5px;
    margin-bottom: 16px;
}

h4+p {
    color: #EFF0F3!important;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    letter-spacing: 0.28px;
    margin-bottom: 0px!important;
    padding-bottom: 0px!important;
}

.ic-implementa {
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 111px;
}

.ic-implementa-card {
width: 293px;
max-width: 293px;
}

.hb-video {
width: 512px;
}

.ic-carrousel {
margin-top: 60px;
}

.ic-dot {
    background-color: #3366FF;
    height: 5px;
    margin-top: 60px;
}

.ic-automatiza {
    margin: 0px 0px 0px 0px;
    /* margin-top: 0px; */
    gap: 16px;
    flex-wrap: wrap;
}

.ic-ml-80 {
    margin-left: 100px;
}

div.ic-recuadro-equipos-wapper {
    margin-top: 40px;
}

div.ic-recuadro-equipos-wapper:nth-child(3)  {
    margin-top: 25px;
    margin-bottom: 40px;
}

span.ic-recuadro-equipos {
    border-radius: 20px;
    border: 1px solid #000414;
    padding: 18px 20px 18px 20px;
    color: #000414;
    leading-trim: both;
    text-edge: cap;
    font-family: "TT Firs Neue Variable";
    font-size: 22px;
    font-style: normal;
    font-weight: 450;
    line-height: 140%; /* 30.8px */
    margin-bottom: 0px;
    
}

p.ic-recuadro-equipos {
    border-radius: 20px;
    border: 1px solid #000414;
    padding: 18px 24px 18px 24px;
    color: #000414;
    leading-trim: both;
    text-edge: cap;
    font-family: "TT Firs Neue Variable";
    font-size: 22px;
    font-style: normal;
    font-weight: 450;
    line-height: 140%; /* 30.8px */
    margin-bottom: 0px;
    
}

.ic-gradiente-azul {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 150;
}
.carousel-inner-clientes {
    position: relative;
    width: auto;
    overflow: hidden;
    
}


@media all and (max-width: 1199px){

    .hide-mobile {
        display: none!important;
        ;
    }

    .ic-recuadro2 img {
        margin-right: 0px;
    }

    .hide-mobile {
        display: none;
    }
  
    .container {
        padding-right: 25px!important;
        padding-left: 25px!important;
    }

    .ic-ml-80 {
        margin-left: 30px;
    }
    

    div.ic-recuadro-equipos-wapper:nth-child(3)  {
        margin-top: 0px;
        margin-bottom: 40px;
    }
    
    .Second-Fold2.final {
        border-radius: 20px 20px 0px 0px!important;
        padding: 60px 0px 0px 0px;
    }

    .hb-video {
        width: 100%;
    }

    .ic-banner-black {
        background-color: #000414;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .btn {
    margin-bottom: 0px;
    }

    .ic-text-link {
        margin-right: 0px;
        font-size: 10px;
    }

    .ic-recuadro2 {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        flex-shrink: 0;
        margin-bottom: 50px;
        margin-right: 0px;
    }

    .ic-recuadro2 p {
        font-size: 16px;
    }

   h3 {
        font-size: 20px!important;
        margin-bottom: 30px;
    }

    h3 span {
        font-size: 20px;
    }

    span.ic-recuadro-equipos {
        padding: 10px 20px 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .ic-recuadro2:last-child {
        margin-bottom: 0px;
    }

    div.ic-recuadro-equipos-wapper:nth-child(3) {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .ic-implementa {
        gap: 50px;
    }

 
h1 + h2 {
    font-size: 18px;
    line-height: 24px;
    margin-top:5px;
    margin-bottom:16px;
}

.Second-Fold h3 {
    margin-bottom: 0px;
}

    .Cuarto-Fold h2 {
        margin-top: 0px;
    }

    .carousel-indicators {
        /* position: absolute; */
        /* right: 0; */
        /* bottom: -54px; */
        left: -28px;
        z-index: 15;
        display: flex;
        justify-content: center;
        padding-left: 0;
        margin-right: 0;
        margin-left: 0;
        list-style: none;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }

    .carousel-indicators li {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 7px;
        height: 7px;
        border-radius: 5px;
        margin-right: 14px;
        margin-left: 14px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #1D2351;
        background-clip: padding-box;
        border-top: none;
        border-bottom: none;
        opacity: 0.5;
        transition: opacity 0.6s ease;
    }

    .carousel-indicators li {
        border-radius: 5px;
        margin-right: -18px;
        margin-left: 30px;
        background-color: #36f!important;
    }
    .carousel-indicators .active {
        opacity: 1 !important;
    }
    

    .Second-Fold {
        padding: 45px 0px 60px 0px;
    }
    
    .slider .slide-track {
        animation: scroll 75s linear infinite;
        display: flex;
        width: calc(457px * 5)
        }
    
    .ic-dynamic-form{
        width: unset;
    }

    h1 ,
    h1 + p {
        text-align: left;
    }

    p.ic-text-bajada {
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 23px;
        margin: 5px 0px 0px 0px;
        padding-bottom: 30px;
    }
    .full-fold {
        padding: 39px 0px 0px 0px;
    }
    .slider::before, .slider::after {
        width: 30px;
    }
    .ic-banner-blue p {
        padding-left: 44px!important;
        padding-right: 44px!important;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 175% */
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .Second-Fold2 {
        background: #000414;
        padding: 60px 0px 0px 0px;
        border-radius: 20px 20px 0px 0px;
    }

    .Second-Fold2-carrousel .ic-banner-black {
        padding-bottom: 60px!important;
        border-radius: 0px 0px 20px 20px;
    }

    .ic-banner-blue {
        height: 125px;
        padding: 0px 0px 0px 0px;
        z-index: 1000;
    }
    .ic-mr-90 {
        margin-right: 30px;
        }
    h2 {
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px; /* 155.556% */
        margin-top: 42px;
    }
    .slider {
        height: auto;
        margin: 44px 0px 30px 0px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .row {
        margin-right: 0px;
        margin-left: 0px;
    }

    .ic-card-Media-funcionalidades {
        width: 275px!important;
        height: 82px!important;
    }

    .ic-icono-productos-wrap {
        background-color: #fff;
        border-radius: 50%;
        padding: 18px;
        width: 82px!important;
        height: 82px!important;
        flex-shrink: 0;
        margin: -28px 40px 0px -80px!important;
        box-shadow: 0px 0px 15px 0px rgba(51, 102, 255, 0.10);
    }

      
        .ic-img-Media {
            margin: 9px 0px 0px 0px!important;
        }

        .ic-mobile-fix {
            margin: -12px 0px 0px 0px;
        }
        .ic-mobile-fix2 {
            margin: -27px 0px 0px 0px;
        }
        .ic-ultimo-fold {
            padding-bottom: 20px;
        }
        footer p {
            padding-top: 0px;
            height: auto;
            font-weight: 400;
            color: #FFF;
            text-align: center;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 0px;
        }

        .Second-Fold2.final h3, .Quinto-Fold h3 {
            margin-bottom: 20px;
        }

        .Quinto-Fold {
            padding: 60px 0px 60px 0px;
        }

        p {
            padding-bottom: 0px;
        }

        .slider .slide-track {
            animation: scroll 120s linear infinite;
            display: flex;
            width: calc(1860px * 3);
        }

        .ic-class-form-button-submit.btn.btn-success {
            margin-left: auto;
            margin-right: auto;
        }
        .ic-bg-img {
            /* background: url(../img/ic-lp-es-bg-landing-paid-media-sd.webp) no-repeat center center; */
            background-color: #F7F4F9;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
            -webkit-background-position: bottom;
            -moz-background-position: bottom;
            -o-background-position: bottom;
            background-position: bottom;
            max-height: 700px;
        }

        .ic-gradient-Fold3 {
            border-radius: 1171px;
            background: radial-gradient(70.75% 50% at 50% 50%, rgba(240, 255, 65, 0.50) 0%, #FFF 100%);
            filter: blur(76.3420639038086px);
            width: 270px;
            height: 375px;
            flex-shrink: 0;
            z-index: 50;
            position: absolute;
            margin-top: 505px;
        }


        .ic-img-mobile {
            z-index: 100
        }


        .navbar-brand img[src*=".svg"] {
            width: 103px;
            height: 24px;
        }
        nav {
            height: 55px;
        }
        .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
            padding-right: 0px!important;
            padding-left: 0px!important;
        }

        .card-deck {
            margin-right: 0px;
            margin-left: 0px;
        }
        .ic-card-Media-funcionalidades {
            margin-left: 40px;
        }
        .ic-dynamic-form {
            margin: 0px 0px 0px 0px;
        }

        
        .ic-recuadro {
           display: flex;
            width: 340px;
            min-height: 219px!important;
            max-height: 245px!important;
            padding: 25px 25px 35px 25px!important;
            flex-direction: column;
            align-items: flex-start;
            flex-shrink: 0;
            border-radius: 23.431px;
            background: rgba(202, 213, 255, 0.10);
            box-shadow: 0 5.858px 24.407px 0 rgba(0, 18, 255, 0.08);
        }

        .ic-automatiza {
        margin: 0px 0px 0px 0px;
        /* margin-top: 0px; */
        gap: 25px;
        flex-wrap: wrap;
        }

        h2 span {
            color: #FFF;
            text-align: center;
            leading-trim: both;
            text-edge: cap;
            font-family: "TT Firs Neue Variable";
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            top: 14px;
            position: absolute;
        }

        .ic-bg-dark {
            padding: 26px 0px 21px 0px;
        }

.ic-recuadro-last {
    margin-right: 0px;
    margin-bottom: 0px;
}

.ic-recuadro h2{
    color: #FFF;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 65% */
    margin-bottom: 10px;
    margin-top: 0px!important;
}




.Tercer-Fold img{
    width: auto;
    border-radius: 20px 20px 0px 0px;
}


.ic-recuadro-mejoras-last {
    margin-right: 0px;
}

.ic-recuadro-mejoras h2{
    color: #273480;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 65% */
    margin-bottom: -12px;
    margin-top: 0px;
}

.ic-recuadro-mejoras p {
    color: #353535;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 162.5% */
}


.ic-recuadro-mejoras {
    display: inline-flex;
    height: auto;
    min-width: 307px!important;
    max-width: 307px!important;
    width: auto;
    padding: 23px 30px 30px 30px !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    flex-shrink: 0;
    border-radius: 0px 0px 20px 20px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(51, 102, 255, 0.15);
}

.carousel-inner-clientes {
    width: auto;
    height: 100%;
    transition: all 0.3s ease-in;
}
.carousel-item, 
.carousel-item active {
    transition: all 0.3s ease-in;
}


.Cuarto-Fold {
    background: #F7F4F9;
    padding: 39px 0px 40px 0px;
}
.Cuarto-Fold h2+p {
    font-size: 13px!important;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: -6px;
}

.Cuarto-Fold h2 {
    margin-bottom: 16px;
}
.btn-ic {
    width: 171px!important;
    height: 43px!important;
    font-size: 15px!important;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
}
.btn {
    padding: 11px 25px;
}
h1 + p {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    margin: 11px 0px 16px 0px;
    padding: 0px!important
}
.ic-boton-recuadro {
    background-color: #fff;
    padding: 27px 20px 27px 20px;
    box-shadow: 0px 0px 15px 0px rgba(51, 102, 255, 0.25);
    z-index: 1000;
    position: fixed;
    bottom: 0px;
    width: 100%;
}
       .Tercer-Fold {
        padding: 37px 0px 59px 0px;
    }

    .btn-ic:after, #submit-btn:after, .btn-tablet:after {
        content: "";
        width: 0px;
        /* height: 200px; */
        background: var(--color-btn-hover);
        transition: all .3s ease;
        -webkit-transition: all .5s ease;
        left: 50%;
        top: calc(50% - 100px);
        z-index: -200;
        border-radius: 100%;
        position: absolute;
    }

    .ic-video-home {
        position: relative;
        z-index: 100;
        border-radius: 30px 30px 0px 0px;
    }

    .card {
        top: 55px!important;
    }
   
.sticky-top {
    width: calc(100% - 40px);
    border-radius: var(--radius-radius-lg, 16px);
    background: rgba(0, 4, 20, 0.50)!important;
    box-shadow: 0 4px 16px 0 rgba(0, 18, 255, 0.05);
    backdrop-filter: blur(20px);

}



  #link-layer, #link-svg, #link-svg * {
    pointer-events: none !important;
  }

  
  .flag-hidden { 
    position: absolute !important; 
    left: -9999px; 
    width: 1px; height: 1px; 
    overflow: hidden;
  }
  .flag-select {
    position: relative; display: inline-block;
  }
  .flag-trigger {
    display: inline-flex; align-items: center; gap: .5rem;
    border: 1px solid #D0D5DD; background: #fff; 
    padding: 6px 10px; border-radius: 8px; min-width:70px; min-height: 43px;
    cursor: pointer;
  }
  .flag-icon svg, .flag-icon img { width: 24px; height: 24px; display: block; }
  .flag-menu {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0;
    max-height: 240px; overflow: auto; border: 1px solid #D0D5DD; 
    background: #fff; border-radius: 8px; 
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    display: none; z-index: 1000;
    padding: 4px;
  }
  .flag-select[aria-expanded="true"] .flag-menu { display: block; }
  .flag-option {
    list-style: none; padding: 6px; margin: 2px 0; 
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px; cursor: pointer;
  }
  .flag-option[aria-selected="true"] {
    outline: 2px solid #9B5CFF; outline-offset: -2px;
  }
  .btn {
    margin-top: 8px;
    margin-bottom: 25px;
}


.ic-herobanner {
    z-index: 100;
    margin-top: -7px;
}
}

    
@media all and (min-width: 768px) and (max-width: 1199px){

    .ic-video-home {
        position: relative;
        z-index: 100;
        border-radius: 30px 30px 0px 0px;
    }

    .ic-img-Media-mobile {
        margin: 42px 0px 0px 0px;
    }

    .ic-recuadro2:last-child {
        margin-bottom: 30px;
    }
    .ic-recuadro,
    .ic-recuadro2 {
        margin-right: 30px!important;
    }

    .ic-recuadro:last-child,
    .ic-recuadro2:last-child{
        margin-right: 0px!important;
        margin-bottom: 0px!important;
    }

    .ic-recuadro-last {
        margin-bottom: 24px;
    }
    
    h3 + p {
        display: block!important;
    }

    .ic-bg-img {
        max-height: 572px;
    }

    .carousel-indicators {
        /* position: absolute; */
        /* right: 0; */
        /* bottom: -54px; */
        left: -40px;
    }

    
}



.card {
    position: sticky;
    top: 150px;
    border: 0px solid;
    border-radius: 24px!important;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  
  .card__inner {
    will-change: transform;
    background: white;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    box-shadow: 0px 6px 25px 0px rgba(0, 18, 255, 0.08);
    transform-origin: center top;
    padding: 40px;
  }
  
  .cards {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-rows: repeat(var(--cards-count), var(--card-height));
    gap: 40px 0;
  }
  
  .card__image-container {
    display: flex;
    flex-shrink: 0;
  }
  
  
  .card__content {
   width: 415px;
   
  }
  
  .card__title {
    padding: 0;
    margin: 0;
    color: #000414;
    /* Desktop/H3 */
    font-family: "TT Firs Neue Variable";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 35.2px */
    letter-spacing: -0.64px;
    margin-top: 13px;
  }
  
  .card__description {
    color: #000414;
    /* Text/Body L */
    font-family: Manrope;
    font-size:16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0.32px;
  }
  
  .Tercer-Fold img {
    border-radius: 0px 0px 0px 0px;
}


.card-icon {
    border-radius: 24px;
    background: #FFF;
    width: 373px;
    height: 242px;
    /* dropshadow-element */
    box-shadow: 0px 6px 25px 0px rgba(0, 18, 255, 0.08);
    padding: 32px;
}

.cards-icon {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(373px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.ic-titulo-card {
    color:#353535;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
    margin: 13px 0px 10px 0px;
}
.ic-texto-card span {
    color: #353535;
    /* Text/Body L */
    font-family: Manrope;
    font-size: 16px!important;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0.32px;}


.Quinto-Fold {

    .ic-texto-card span {
        font-size: 14px!important;
        }

    .ic-image img {
        border-radius: 24px 24px 0px 0px;
    }

    .card-icon {
        border-radius: 24px;
        background: #FFF;
        width: 379px;
        height: auto;
        box-shadow: 0px 6px 25px 0px rgba(0, 18, 255, 0.08);
        padding: 0px;
    }

    .card-icon {
        border-radius: 0px 0px 24px 24px ;
    }

    .ic-content {
        padding: 24px;
    }

} 

.Second-Fold2.ic-tablas {
        background: #000414;
        padding: 120px 0px 120px 0px;
        border-radius: 40px;
        background-image: url("../img/ic-lp-paid-bg-infunnel2@2x.webp");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    
        .ic-tablas-wapper {
            margin: 60px 0px 40px 0px;
            gap: 8px;
        }

        .ic-tablas-item {
            display: inline-flex;
            max-width: 363px;
            padding: 50px 40px!important;
            flex-direction: column;
            align-items: flex-start;
            border-radius: 40px;
            background: linear-gradient(195deg, rgba(255, 102, 204, 0.10) 0%, rgba(255, 102, 204, 0.06) 50%, rgba(255, 102, 204, 0.02) 100%);
            backdrop-filter: blur(20px);
        }

        .ic-tablas-item.ic-destacado {
            display: inline-flex;
            max-width: 363px;
            padding: 50px 40px;
            flex-direction: column;
            align-items: flex-start;
            border: 0.5px solid #F6C;
            background: linear-gradient(195deg, rgba(255, 102, 204, 0.10) 63.94%, rgba(255, 102, 204, 0.70) 100%);
            backdrop-filter: blur(20px);
        }

        .wrapper-etiqueta {
           
            gap: 6.125px;
            position: absolute;
            right: 70px;
            top: 65px;
            border-radius: 60px;
            background: #F6C;
            box-shadow: 0px 0px 10px 0px rgba(255, 102, 204, 0.50);
        }

        .ic-etiqueta {
            color: #000414;
            font-family: "TT Firs Neue Variable";
            font-size: 9.188px;
            font-style: normal;
            font-weight: 600;
            line-height: 12.25px;
            letter-spacing: -0.184px;
            display: flex;
            padding: 6px 10px;
            justify-content: center;
            align-items: center;
            margin: 0px;
        }

        .ic-tablas-item h2 {
            color: #FFF;
            font-family: "TT Firs Neue Variable";
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 56px; /* 116.667% */
            letter-spacing: -0.8px;
            margin-bottom: 24px;
        }

        .ic-tablas-item h2+p {
            color: #FFF;
            font-family: Manrope;
            font-size: 24px;
            font-style: normal;
            font-weight: 250;
            line-height: 32px; /* 133.333% */
            margin-top: 0px;
            margin-bottom: 0px;

        }

        .ic-tablas-item h2+div+p {
            color: #FFF;
            font-family: Manrope;
            font-size: 24px;
            font-style: normal;
            font-weight: 250;
            line-height: 32px; /* 133.333% */
            margin: 0px;
            padding: 0px;
            margin-bottom: 9px;
        }
        .ic-tablas-item h2+div+p+p {
            color: #fff;
            font-family: Manrope;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px; /* 111.111% */
            margin: 0px;
        }

        .ic-tablas-item h2+p+p {
            color: #fff;
            font-family: Manrope;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px; /* 111.111% */
            margin: 0px;
            
        }

        span.ic-precio {
            color: #F6C;
            font-family: Manrope;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px; /* 160% */
            margin-top: 16px;
        }

        span.ic-precio2 {
            color: #F6C;
            font-family: Manrope;
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px;
        }


        .btn-ic-white {
            min-width: 283px;
            margin: 18px 0px;
        }

        .ic-linea {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.24);
            margin: 24px 0px 16px 0px;
        }

        h4 {
            color: #FFF;
            leading-trim: both;
            text-edge: cap;
            font-family: Manrope;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 28px; /* 140% */
            letter-spacing: -0.4px;
        }

        .ic-content .ic-texto, 
        .ic-content .ic-icon{
           margin-left: 0px !important;
           padding-left: 0px!important;
        }

        .ic-content {
            margin-bottom: 11px;
        }

        .ic-content .ic-texto p:last-child, 
        .ic-content .ic-texto p {
            width: 100%;
            color: #FFF;
            font-family: Manrope;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px; /* 157.143% */
            padding:  0px 0px 0px 0px;
            margin: 0px 0px 0px 5px;
        }

        .ic-tablas-demo {
            display: flex;
            justify-content: start!important;
        }

        .ic-tablas-item-demo {
            display: flex;
            width: 361px;
            padding: 30px 40px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #FFF;
            gap: 10px;
            border-radius: 24px;
            border: 1px solid #F6C;
            background: linear-gradient(195deg, rgba(255, 102, 204, 0.10) 0%, rgba(255, 102, 204, 0.06) 50%, rgba(255, 102, 204, 0.02) 100%);
            box-shadow: 0px 0px 60px 0px rgba(255, 102, 204, 0.10);
            backdrop-filter: blur(20px);
        }
       

    }

    .full-fold .card__image {
        margin-left: 80px;
        margin-right: -80px;
    }

    .Second-Fold2 h3 + p {
        font-size: 16px;
    }

     
    
    .Second-Fold2.ic-tablas .panel {

       

        h4 {
            margin-bottom: 0px!important;
            margin-top: 30px!important;
        }

        .ic-linea {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.24);
            margin: 10px 0px 16px 0px;
        }
     
    }
    a.collapsed {
        color: #fff!important;
        text-decoration: none;
    }
    p.panel-body, 
    .panel .panel-default, 
    .panel-group a:hover {
        color: #fff!important;
        text-decoration: none;
    }

    .panel-group {
        width: 100%;
    }



    .ic-acordion {
        width: 100%;
        max-width: 400px;
        margin: auto;
    }
    .ic-acordion input {
        display: none;
    }
    .ic-acordion label {
        display: block;
        color: white;
        cursor: pointer;
    }
    .content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .ic-acordion input:checked ~ .content {
        max-height:800px;
        height: auto;
    }

    .accordion-item label {
        margin: 10px 0px 0px 0px;
    }

    @media all and (max-width: 1199px){

        nav {
            border-radius: 16px;
            border: 1px solid #EEF1FE;
            background: rgba(255, 255, 255, 0.75);
            box-shadow: 0px 4px 16px 0px rgba(0, 18, 255, 0.05);
            backdrop-filter: blur(20px);
            width: 90%;
            height: 57px;
            padding: 16px!important;
            margin: 20px 15px 20px 15px;
            position: absolute!important;
        }

        .mid {
                width: 340px;
                height: 402px;
            }

            .mid .avatar .img-demos {
            width: 340px !important;
        
            }

        .degrade {
                background: radial-gradient(90% 53% at 13% 0%, rgba(143, 72, 250, 0.70) 0%, rgba(0, 4, 20, 0.70) 100%)!important;
                z-index: -1;
            }

        .btn-ic-llamada {
           width: 120px;
        }


        .full-fold {
            padding: 100px 0px 0px 0px;
        }

        #mobile-controls select {
            font-family: "TT Firs Neue Variable";
            font-size: 15px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: 0.15px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            line-height: 1.2;
            padding: 10px 14px;
            border-radius: 8px;
            /* border: 1px solid rgba(255, 255, 255, 0.18); */
            /* background: rgba(255, 255, 255, 0.1); */
            color: #000414!important;
            background-color: #fff!important;
            width: 120px;
            height: 44px;
        }

        h1 {
            /* Mobile/H2 */
            font-family: "TT Firs Neue Variable";
            font-size: 28px!important;
            font-style: normal;
            font-weight: 500;
            line-height: 110%; /* 30.8px */
            letter-spacing: -0.56px;
            margin-bottom: 12px!important;
            color: #fff!important;
        }

        p.ic-text-bajada {
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 160%;
            margin: 0px 0px 19px 0px;
            padding-bottom: 30px;
        }

        #mobile-controls {
            display: none;
            gap: 12px;
            align-items: center;
            justify-content: center;
            margin: 20px 0 0px;
            flex-wrap: wrap;
        }

        .ic-bg-img {
            max-height: 610px;
        }

        .sticky-top .container {
            padding-left: 0px!important;
            padding-right: 0px!important;
        }

        .wrap {
    margin-left: 0px;
    }


        h3 {
            color: #000414;
            text-align: center;
            font-family: "TT Firs Neue Variable";
            font-size: 28px!important;
            font-style: normal;
            font-weight: 500;
            line-height: 110%; /* 30.8px */
            letter-spacing: -0.28px;
        }

        .Tercer-Fold {
            padding: 70px 0px 70px 0px;
        }
        .card__content {
            width: 100%;
        }
        .card__title {
            font-size: 21px!important;
        }

        .card__inner {
            padding: 24px 15px 24px 15px;
          }
          .card__image-container {
            width: 100%;
        }
        h1 + p {
            margin: 20px 0px 26px 0px;
        }

        .card-icon {
            width: 100%;
            height: auto;
        }

        .ic-texto-card span {
            font-size: 14px!important;
        }
        .cards-icon {
            gap: 24px;
        }

        .Second-Fold2 {
            padding: 0px 0px 35px 0px;
            border-radius: 0px;
            background: #000414;
            gap: 20px!important;
            flex-shrink: 0;
            background: radial-gradient(50% 20% at 90% 100%, rgba(143, 72, 250, 0.40) 0%, rgba(0, 4, 20, 0.70) 100%);
        }
        




        .Second-Fold2-carrousel .ic-banner-black {
            border-radius: 0px 0px 40px 40px;
            margin-top: -2px;
            padding-bottom: 60px !important;
        }
        h3 span {
            font-size: 28px;
        }

        .card-icon {
            border-radius: 24px!important;
            background: #FFF;
            width: 330px!important;
            height: auto;
            box-shadow: 0px 6px 25px 0px rgba(0, 18, 255, 0.08);
            padding: 30px;
        }

        .carousel-inner {
            overflow: hidden;
            padding: 0px 20px 20px 20px;
        }

        .carousel-indicators li {
            width: 33px;
            height: 5px;
        }

        .carousel-indicators {
            position: absolute;
            right: 0;
            bottom: -30px;
            left: -45px;
            z-index: 15;
            display: flex;
            justify-content: center;
            padding-left: 0;
            margin-right: 0;
            margin-left: 0;
            list-style: none;
            align-content: center;
            align-items: center;
            flex-wrap: nowrap;
        }

        .Quinto-Fold {
            padding: 75px 0px 120px 0px;
        }

        .container {
            padding-right: 20px;
            padding-left: 20px;
        }

        .Second-Fold2.ic-tablas {
            background: #000414;
            padding: 70px 0px 70px 0px;
            border-radius: 40px;
            background-image: url("../img/ic-lp-paid-bg-infunnel2@2x.webp");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

        .carousel .card-icon {
            height: 480px!important;
        }
    

        .ic-card-iconos {
            width: 100%!important;
            height: auto;
        }

        .Second-Fold2.ic-tablas .ic-tablas-item h2 {
            font-size: 28px;
            font-style: normal;
            line-height: 43.353px; /* 166.742% */
            letter-spacing: -0.52px;
            margin: 0px 0px;
        }
        .Second-Fold2.ic-tablas .ic-tablas-item h2+p {
            font-size: 18px;
            line-height: 24px;
        }

        .Second-Fold2.ic-tablas .ic-tablas-item h2+p+p {
            font-size: 18px;
            line-height: 15px;
            margin-bottom: 18px;
        }

        .Second-Fold2.ic-tablas .btn-ic-white {
            min-width: 225px;
            margin: 9px 0px 15px 0px;
        }

        .Second-Fold2.ic-tablas .ic-tablas-item {
            display: inline-flex;
            max-width: 287px;
            padding: 35px 30px!important;
            flex-direction: column;
            align-items: flex-start;
            border-radius: 40px;
            background: linear-gradient(195deg, rgba(255, 102, 204, 0.10) 0%, rgba(255, 102, 204, 0.06) 50%, rgba(255, 102, 204, 0.02) 100%);
            backdrop-filter: blur(20px);
        }

        .Second-Fold2.ic-tablas .ic-tablas-wapper {
            margin: 30px 0px 0px 0px;
            gap: 8px;
        }

        .Second-Fold2.ic-tablas h4 {
            font-size: 16px;
            line-height: 21px;
            letter-spacing: -0.32px;
        }

        .Second-Fold2.ic-tablas .ic-tablas-item-demo {
            display: flex;
            width: 287px;
            height: 152px;
            padding: 30px 30px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #FFF;
            gap: 24px;
            border-radius:40px;
            border: 1px solid #F6C;
            background: linear-gradient(195deg, rgba(255, 102, 204, 0.10) 0%, rgba(255, 102, 204, 0.06) 50%, rgba(255, 102, 204, 0.02) 100%);
            box-shadow: 0px 0px 60px 0px rgba(255, 102, 204, 0.10);
            backdrop-filter: blur(20px);
            margin-top: 34px;
        }
        .ic-tablas-item-demo p {
            color: #FFF;
            text-align: center;
            font-family: Manrope;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 22px; /* 122.222% */
        }

        .Second-Fold2.ic-tablas .ic-tablas-item-demo .btn-ic-white {
            min-width: 207px;
            min-height: 44px ;
            margin: 9px 0px 0px 0px;
            font-size: 15px;
        }

        .Cuarto-Fold .btn-ic {
            width: 177px!important;
            height: 43px!important;
            font-size: 15px!important;
            font-weight: 400;
            line-height: normal;
        }

        .full-fold .card__image {
            margin-bottom: -75px;
            margin-left: 25px;
            margin-right: 0px;
        }


        .Tercer-Fold .card__title {
            margin-top: 16px;
        }

        .Second-Fold2-carrousel .slider img {
            height: 34px!important;
        }

        .ic-tablas-item.ic-destacado {
            max-width: 287px!important;
            padding: 45px 30px!important;
        }

        .ic-linea {
            margin: 5px 0px 16px 0px!important;
        }

        .Second-Fold2.ic-tablas {

            .ic-etiqueta {
                color: #000414;
                display: flex;
                padding: 4px 10px 3px 10px;
                font-family: "TT Firs Neue Variable";
                font-size: 7px;
                font-style: normal;
                font-weight: 600;
                line-height: 12.25px; /* 175% */
                letter-spacing: -0.14px;
                margin: 0px;
            }
    
            .wrapper-etiqueta {
                display: inline-flex;
                justify-content: center;
                align-items: center;
                top: 46px;
                right: 67px;
                gap: 6.125px;
                border-radius: 60px;
                background: #F6C;
                box-shadow: 0px 0px 10px 0px rgba(255, 102, 204, 0.50);
            }

            .ic-tablas-item h2+div+p {
                font-size: 18px;
                line-height: 24px;
                margin-top: 10px;
            }
            .ic-tablas-item h2+p {
                margin-bottom: 3px;
                margin-top: 5px;
            }

            .ic-tablas-item h2+div+p+p {
                font-size: 18px;
                line-height: 24px;
            }
            .ic-tablas-item.ic-destacado h2+div+p+p {
                font-size: 18px;
                line-height: 24px;
                margin-bottom: 18px;
            }
            
            .ic-tablas-item.ic-destacado h2+div+p {
                    margin-bottom: 0px;
                }

            span.ic-precio {
                font-size: 16px;
                line-height: 24px;
                margin-top: 0px;
            }

            span.ic-precio2 {
                font-size: 18px;
                line-height: 24px;
            }
            .btn-ic-white {
                margin: 20px 0px 10px 0px;
            }
            .btn-ic-white {
                height: 34px!important;
            }
          
        } 

        .linea {
            margin-bottom: 16px;
        }

        
        .btn-ic-white {
            border-color:transparent;
        }


  
  .select-wrap select:focus { outline: none; box-shadow: none; }
  .select-wrap:focus-within { outline: none; box-shadow: none; }
  .select-wrap[data-open]   { outline: none !important; box-shadow: none !important; }


  .select-wrap select:focus-visible {
    outline: 2px solid none;   /* cámbialo o pon 'none' si no quieres nada */
    outline-offset: 2px;
  }

  /* Extra en móviles: elimina el flash al tocar */
  .select-wrap select { -webkit-tap-highlight-color: transparent; }

  /* Enlaces dentro del selector: mismo color del texto y sin subrayado */
.flag-select a,
.flag-menu a,
.flag-trigger a {
  color: inherit !important;
  text-decoration: none !important;
  -webkit-text-fill-color: currentColor !important; /* Safari iOS */
}
a[href^="tel:"],
a[href^="mailto:"] {
  color: inherit !important;
  text-decoration: none !important;
  -webkit-text-fill-color: currentColor !important;
}
.flag-select *,
.flag-trigger,
.flag-menu a { 
  -webkit-tap-highlight-color: transparent;
}

/* Quita el aro en foco normal (mouse/touch) */
.flag-trigger:focus { 
  outline: none !important; 
  box-shadow: none !important; 
}

/* Solo muestra un foco “bonito” si es navegación por teclado */
.flag-trigger:focus-visible {
  outline: 2px solid #9B5CFF;   /* cámbialo o pon none si no quieres nada */
  outline-offset: 2px;
}

/* Mientras el menú está abierto, nunca muestres aro */
.flag-select[aria-expanded="true"] .flag-trigger {
  outline: none !important;
  box-shadow: none !important;
}

/* Suaviza en iOS */
.flag-trigger { 
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}

  .navbar-brand {
                height: 43px!important;
            }



    

      #mobile-controls .ctrl {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      #mobile-controls .btn-ic-llamada {
        margin: 0;
      }

      @media (max-width: 991.98px) {
        .left,
        .right,
        #link-layer {
          display: none !important;
        }
        #mobile-controls {
          display: flex;
        }

        #media-container {
        min-width: 340px;
           height: 268px;
           background-image: url("../img/ic-lp-inagent-etapa1-natalia-sd.webp");
           background-position: 0px 0px;
           background-size: cover;
        }

        h2 {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 28px;
            margin-top: 0px;
            margin-bottom: 0px;
        }
        h1 {
            font-family: "TT Firs Neue Variable";
            font-size: 28px!important;
            font-style: normal;
            font-weight: 500!important;
            line-height: 110%;
            letter-spacing: -0.56px;
            margin-bottom: 12px!important;
            color: #fff!important;
        }

        h1 span {
            font-family: "TT Firs Neue Variable";
            font-size: 28px !important;
            font-style: normal;
            font-weight: 500!important;
            line-height: 110%;
            letter-spacing: -0.56px;
        }

      }

      

      @media (min-width: 992px) {
        #mobile-controls {
          display: none;
        }
        
      }

      .call-status {
  font-size: 0.85rem;
  color: #666;
  margin-top: 6px;
  min-height: 18px; /* evita que salte el layout */
}

a.demo {
    margin-right: -5px;
}

div.demo {
    padding-right: 0px!important;
}
