
@font-face {
  font-family: 'Futura';
  src: url('../fonts/FuturaPTBook.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url('../fonts/Futura Md BT Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url('../fonts/Futura Md BT Medium Italic.otf') format('opentype');
  font-weight: italic;
  font-style: normal;
}

/* Incluir más @font-face si tienes otras variaciones */

:root {

    /**
     * colors
     */
  
     --iteazul: #131396;
     --iteorange: #F99400;
     --itehead:#fef7f8;
     --itecuadros: #f1f1f3;
     --itetext:#6c6c6c;
     --dark: #000;

    /**
     * typography
     */
  
     /* --ff-manrope: 'Arial', sans-serif; */
  
    --fs-1: calc(2.7rem + 1.38vw);
    --fs-2: calc(2.6rem + .66vw);
    --fs-3: 2.2rem;
    --fs-4: 1.9rem;
    --fs-5: 1.8rem;
    --fs-6: 1.7rem;
    --fs-7: 1.5rem;
    --fs-8: 1.4rem;
    
    --fw-700: 700;
  
    /** 
     * spacing
     */
  
    --section-padding: 90px;
  
    /**
     * box shadow
     */
  
    --shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
    --shadow-2: 0 0 0 0.05rem hsla(214, 88%, 27%, 0.08), 0 0 1.25rem hsla(216, 14%, 14%, 0.06);
    --shadow-3: 0 0 1.25rem hsla(216, 14%, 14%, 0.04);
  
    /**
     * border radius
     */
  
    --radius-circle: 50%;
    --radius-pill: 100px;
    --radius-10: 10px;
    --radius-8: 8px;
    --radius-6: 6px;
  
    /**
     * transition
     */
  
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --transition-3: 0.3s ease-in-out;
  
  }
  
  /*-----------------------------------*\
    #ETIQUETAS
  \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a,
  img,
  span,
  input,
  button,
  ion-icon { display: block; }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img { height: auto; }
  
  input,
  button {
    background: none;
    border: none;
    font: inherit;
  }
  
  input { width: 100%; }
  
  button { cursor: pointer; }
  
  ion-icon { pointer-events: none; }
  
  address { font-style: normal; }
  
  html {
    font-family: 'Futura', sans-serif;
    font-size: 10px;
    scroll-behavior: smooth;
  }
  
  main{
    margin-top: 7em;
  }
  
  body {
    background-color: white;
    color: var(--black-coral);
    font-size: 1.6rem;
    line-height: 1.7;
    font-family: 'Futura', sans-serif;
  }

  body, html {
    overflow-x: hidden;
  }

/*-----------------------------------*\
  # INDEX
\*-----------------------------------*/

  /*
  +++++++
  # BANNERS
  ++++++++
  */

  .Slider {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
  }
  
  .Slider .contenedor {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .Slider .contenedor {
      max-width: 100%;
      margin-top: -10%;
    }
  }
  
  .deslizante {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .tarjeta {
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
  }
  
  .imagen-tarjeta {
    width: 100%;
    height: auto;
  }
  
  .imagen-tarjeta img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .deslizante :is(.swiper-boton-siguiente, .swiper-boton-anterior) {
    background-color: var(--itetitles);
    color: white;
    top: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: background-color .3s;
    box-shadow: var(--box-shadow);
    margin-top: 1em;
  }
  
  .deslizante .swiper-boton-siguiente::after,
  .deslizante .swiper-boton-anterior::after {
    font-size: 16px;
    font-weight: 1000;
    color: #fff;
  }
  
  .deslizante .swiper-boton-siguiente:hover,
  .deslizante .swiper-boton-anterior:hover {
    background-color: var(--iteblue);
  }
  
  .swiper-boton-siguiente {
    right: 10px;
    transform: translateY(-50%);
  }
  
  .swiper-boton-anterior {
    left: 10px;
    transform: translateY(-50%);
  }
  
  .deslizante .swiper-paginacion {
    position: relative;
  }
  
  .deslizante .swiper-paginacion span {
    transition: width 0.3s;
    opacity: 1;
  }
  
  .deslizante .swiper-paginacion .swiper-paginacion-bala-activa {
    width: 26px;
    border-radius: 4px;
  }
  
  @media screen and (max-width: 768px) {
    .deslizante .swiper-boton-siguiente,
    .deslizante .swiper-boton-anterior {
      top: 50%;
    }
  }
  
  /* btn */

  .btn-contactate {
    display: block;
    width: fit-content;
    margin: 0 auto; 
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--iteazul); 
    font-weight: bold;
    border-radius: 15px; 
    border: 2px solid var(--iteazul);
    background-color: #ffffff; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); 
    transition: transform 0.3s ease; 
  }
  
  .btn-contactate:hover {
    transform: scale(1.05);
  }
  
  .btn-contactate:focus {
    outline: none;
  }
  
  /*
  +++++++
  # SOLUCIONES
  ++++++++
  */

  .explora-soluciones {
    padding: 30px 20px;
    background: url('../img/Index/Soluciones/fondo-circuitos.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .contenido-header {
    flex: 1;
    text-align: center;
  }
  
  .contenido-header img {
    width: 80%;
    height: auto;
  }
  
  .soluciones {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .solucion-item {
    position: relative;
    max-width: 500px;
    width: 100%;
  }
  
  .solucion-item img {
    width: 600px;
    height: auto;
    border-radius: 15px;
  }
  
  @media (max-width: 768px) {
    .explora-soluciones {
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }
  
    .contenido-header,
    .soluciones {
      width: 100%;
      text-align: center;
      margin: 0 auto;
    }
  
    .contenido-header img {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .soluciones {
      gap: 20px;
    }
  
    .solucion-item img {
      width: 95%;
    }
  }
  
  /* btns-infos */

  .btns-infos {
    display: flex;
    gap: 20px; 
    justify-content: center; 
    align-items: center;
    margin-top: 20px; 
  }
  
  .btns-infos a {
    display: inline-block;
    border-radius: 10px; 
    overflow: hidden; 
    transition: transform 0.3s ease; 
  }
  
  .btns-infos a:hover {
    transform: scale(1.05); 
  }
  
  .btns-infos img {
    display: block;
    width: 40vh;
    height: auto;
  }

  @media (max-width: 768px) {
    .btns-infos {
      flex-direction: column; 
      gap: 15px; 
    }
  
    .btns-infos img {
      width: 70vw; 
    }
  }

  /*
  +++++++
  # OPTIMO
  ++++++++
  */

  .optimo-web {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .optimo-web .container {
    width: 90%;
    max-width: 1200px;
    position: relative;
  }
  
  .optimo-web img {
    width: 100%;
    height: auto;
  }

  @media (max-width: 769px) {
    .optimo-web {
      display: none; 
    }
  }
  
  @media (max-width: 768px) {
    .optimo-mobile {
      padding: 20px 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 90%;
      margin: 0 auto; 
    }
  
    .img-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px; 
    }
  
    .optimo-mobile img {
      width: 100%;
      height: auto;
    }
  }
  
  @media (min-width: 769px) {
    .optimo-mobile {
      display: none; 
    }
  }
  
  /*
  +++++++
  # PROCESOS
  ++++++++
  */

  .procesos-simples {
    padding: 50px 20px;
    background: url('../img/Index/Procesos/fondo-procesos.webp') no-repeat center center;
    background-size: cover;
    max-width: 100%;
  }
  
  .procesos-simples .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    gap: 20px;
  }
  
  .texto-contenido {
    flex: 1;
    max-width: 50%;
    text-align: justify;
  }
  
  .texto-contenido h2 {
    font-size: 3rem;
    color: var(--iteorange); 
    margin-bottom: 20px;
    font-weight: bold;
  }

  .texto-contenido h2 strong{
    color: var(--iteazul); 
  }
  
  .texto-contenido p {
    font-size: 2.4rem;
    color: var(--itetext);
    margin-bottom: 20px;
  }

  .texto-contenido strong {
    color: var(--iteorange);
  }
  
  .texto-contenido p span {
    color: var(--iteazul);
    font-weight: bold;
    display: inline;
  }
  
  .lista-beneficios {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .lista-beneficios li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .lista-beneficios i {
    color: var(--iteazul); 
    margin-right: 10px;
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  .lista-beneficios span {
    font-size: 2rem;
    color: var(--itetext);
  }

  .lista-beneficios span strong{
    color: var(--iteorange);
  }
  
  .imagen-contenido {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
  }
  
  .imagen-contenido img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }
  
  /* Estilos Responsivos */
  @media (max-width: 768px) {
    .procesos-simples .container {
      flex-direction: column;
      align-items: center;
      width: 95%;
    }
  
    .texto-contenido, .imagen-contenido {
      max-width: 100%;
    }
  
    .texto-contenido h2 {
      text-align: center;
      font-size: 2.5rem;
    }
  
    .texto-contenido p,
    .lista-beneficios li span {
      text-align: justify;
      font-size: 2rem; 
    }
  
    .imagen-contenido img {
      max-width: 100%;
      height: auto;
    }
  }
  
  /*
  +++++++
  # RESULTADO
  ++++++++
  */
  .resultado {
    padding: 50px 0px;
    max-width: 100%;
  }
  
  .resultado .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .resultado h2 {
    width: 50%;
    font-size: 4rem;
    color: var(--iteorange);
    text-align: left;
    margin-bottom: -200px;
  }
  
  .beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 65%;
    flex-direction: row;
    margin-top: 330px;
  }
  
  .beneficio-item {
    flex: 1 1 calc(45% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
  }
  
  .beneficio-item h3 {
    margin-top: auto;
    font-size: 2rem;
    color: var(--iteazul);
    font-weight: bold;
  }
  
  .beneficio-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }
  
  .beneficio-lateral {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
  }
  
  .imagen-derecha {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .imagen-derecha img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
  }
  
  .text-left {
    position: absolute;
    top: 150px;
    left: -10px;
    font-size: 2rem;
    color: var(--iteazul);
    font-weight: bold;
    transform: translateX(-100%);
    white-space: nowrap;
  }
  
  @media (max-width: 992px) {
    .resultado .container {
      flex-direction: column;
      align-items: center;
    }
  
    .beneficios {
      max-width: 100%;
      justify-content: center;
    }
  
    .beneficio-item {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  
    .imagen-derecha img {
      max-width: 300px;
    }
  
    .text-left {
      position: static;
      transform: none;
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .beneficios {
      flex-direction: column;
      margin-top: 190px;
    }

    .resultado h2 {
      width: 95%;
      font-size: 2rem;
      text-align: center;
    }
  
    .beneficio-item,
    .beneficio-lateral {
      flex: 1 1 100%;
    }
  
    .imagen-derecha img {
      max-width: 90%;
      margin: 0 auto;
    }

    .text-left {
     text-align: center;
     margin: 0 auto;
    }
  }
  
  /*
  +++++++
  # FRASE
  ++++++++
  */

  .frase-component {
    padding: 100px 0;
    background: url('../img/Index/Frase/fondo-frase.webp') no-repeat center center;
    background-size: cover;
  }
  
  .frase-component .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .frase-component .elements {
    width: 100%;
  }
  
  .frase-component h2 {
    font-size: 3.5rem;
    line-height: 1.5;
    color: var(--itetext); 
    font-weight: normal;
  }
  
  .frase-component h2 strong {
    font-weight: bold;
    color: var(--itetext); 
  }
  
  .frase-component h2 span {
    color: var(--iteorange); 
    font-weight: bold;
    display: inline; 
    font-weight: bold;
    font-size: 3.5rem;
  }
  
  .frase-component h2 span:nth-of-type(2) {
    display: block;
    margin-top: 10px;
    font-size: 3.5rem;
    display: inline; 
  }  

  @media (max-width: 768px) {
    .frase-component {
      padding: 10px 0;
      background: url('../img/Index/Frase/fondo-frase.webp') no-repeat center center;
      background-size: cover;
    }

    .frase-component .container {
      width: 95%;
    }

    .frase-component h2 {
      font-size: 2.5rem;
    }

    .frase-component h2 span {
      font-size: 2.5rem;
    }
    
    .frase-component h2 span:nth-of-type(2) {
      font-size: 2.5rem;
    }  
  }

  /*
  +++++++
  # OPTIMIZA
  ++++++++
  */

  .optimiza {
    padding: 40px 0;
    text-align: center;
  }
  
  .optimiza .container {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .title-question {
    font-size: 3.5rem;
    color: var(--iteorange); 
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
  }
  
  .title-question span {
    color: var(--iteazul); 
    font-weight: bold;
    margin-left: 5px;
    white-space: nowrap; 
  }
  
  @media (max-width: 1024px) {
    .title-question {
      font-size: 3.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .title-question {
      font-size: 3rem;
    }
  
    .title-question span {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 480px) {
    .optimiza .container {
      max-width: 95%;
      margin: 0 auto;
    }

    .title-question {
      font-size: 2.8rem;
    }
  
    .title-question span {
      font-size: 2.8rem;
    }
  }

   /*
  +++++++
  # PARTNERS
  ++++++++
  */

  .partners {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .partners .container {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .title-partner {
    font-size: 4rem;
    font-weight: normal;
    color: #747474; 
    margin-bottom: 40px;
  }
  
  .imgs-part {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .imgs-part img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease-in-out;
  }
  
  .imgs-part .img-ite {
    max-width: 150px;
  }

  .imgs-part img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 1024px) {
    .imgs-part {
      justify-content: space-between;
    }
  
    .imgs-part img {
      max-width: 130px;
    }
  }
  
  @media (max-width: 768px) {
    .imgs-part {
      flex-direction: column;
      gap: 50px; 
    }
  
    .imgs-part img {
      max-width: 150px;
    }
    .imgs-part .img-ite {
      max-width: 150px;
    }
  }
  
  @media (max-width: 480px) {
    .imgs-part img {
      max-width: 150px;
    }
  }
  
 /* Beneficios  */


.beneficios-web .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
}

.img-beneficio {
  margin-bottom: 40px;
}

.img-beneficio img {
  max-width: 85%;
  height: auto;
  margin: 0 auto;
}

.concepts-beneficios {
  margin-top: -40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.bloc-text {
  flex: 1;
  padding: 0 60px;
}

.subtitle-text {
  font-size: 2rem;
  color: var(--iteazul);
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.bloc-content {
  font-size: 1.8rem;
  color: var(--itetext); 
  line-height: 1.6;
  text-align: justify;
  font-weight: 500;
}

.bloc-content span {
  color: var(--iteazul);
  font-weight: bold;
  display: inline; 
  font-size: 1.8rem;
}

/* Estilos Responsivos */

@media (max-width: 1016px) {
  .beneficios-web {
    display: none;
  }
}

.beneficios-mobile {
  display: none;
}

@media (max-width: 1015px) {
  .beneficios-mobile {
    display: block;
    margin-top: -30px;
    text-align: center;
  }

  .beneficios-mobile .container {
    max-width: 90%;
    margin: 0 auto;
  }

  .bloc-info-mobile {
    margin-bottom: 40px;
  }

  .bloc-info-mobile img {
    width: 40%;
    height: auto;
    margin: 0 auto 20px auto; 
    display: block;
  }

  .bloc-info-mobile h3 {
    font-size: 3.8rem;
    color: var(--iteazul);
    margin-bottom: 15px;
  }

  .bloc-info-mobile p {
    font-size: 2.4rem;
    color: var(--itetext); 
    line-height: 1.6;
    text-align: justify;
    margin: 0;
  }

  .bloc-info-mobile p span {
    font-weight: bold;
    color: var(--iteazul); 
    display: inline; 
  }
}

@media (max-width: 768px) {
  .bloc-info-mobile img {
    max-width: 50%;
  }

  .bloc-info-mobile h3 {
    font-size: 2.6rem;
  }

  .bloc-info-mobile p {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .bloc-info-mobile img {
    max-width: 50%;
  }

  .bloc-info-mobile h3 {
    font-size: 2.4rem;
  }

  .bloc-info-mobile p {
    font-size: 1.6rem;
  }
}

/*-----------------------------------*\
  # Realidad Virtual
\*-----------------------------------*/

/*
  +++++++++++++++++++++++
  # Banner
  +++++++++++++++++++++++
*/

  .ban-RV{
    padding: 20px 0px;
    max-width: 100%;
  }

  .ban-RV img{
    width: 100%;
  }

  .btn-quiero-cotizar img{
    width: 300px;
    height: auto;
    margin: 0 auto;
  }

  @media (max-width: 1015px) {
    .ban-RV{
      padding: 0px 0px;
    }

    .btn-quiero-cotizar img{
      padding: 10px 0px;
      width: 200px;
    }
  }

/*
  +++++++++++++++++++++++
  # Capacitacion
  +++++++++++++++++++++++
*/

.capa-tecno {
  padding: 50px 20px;
}

.capa-tecno .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.compo-texts {
  max-width: 50%;
  text-align: left;
}

.title-image {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.title-image img{
  width: 130px;
}

.title-image h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.blue-text {
  color: var(--iteazul);
}

.orange-text {
  color: var(--iteorange);
}

.icon-vr {
  width: 50px;
  height: auto;
}

.description {
  font-size: 2.5rem;
  color: var(--itetext);
  line-height: 1.6;
  text-align: justify;
}

.image-compo {
  max-width: 45%;
  text-align: center;
}

.image-compo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .title-image img {
    display: none; 
  }
}

/* Estilos Responsivos */
@media (max-width: 768px) {
  .capa-tecno .container {
    flex-direction: column;
    text-align: center;
  }

  .compo-texts {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .image-compo {
    max-width: 100%;
  }

  .blue-text,
  .orange-text {
    text-align: center;
  }

  .title-image {
    align-items: center;
  }

  .title-image h2 {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .description {
    font-size: 2rem;
  }
}

 /*
  +++++++
  # PROCESOS
  ++++++++
  */

  .procesos-virtual {
    padding: 10px 20px;
    background-size: cover;
    max-width: 100%;
  }
  
  .procesos-virtual .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    gap: 20px;
  }
  
  .texto-content {
    flex: 1;
    max-width: 50%;
    text-align: justify;
  }
  
  .texto-content h2 {
    font-size: 3rem;
    color: var(--iteazul); 
    margin-bottom: 20px;
    font-weight: bold;
  }

  .texto-content h2 strong{
    color: var(--iteorange); 
  }
  
  .texto-content p {
    font-size: 2.4rem;
    color: var(--itetext);
    margin-bottom: 20px;
  }

  .texto-content strong {
    color: var(--iteorange);
  }
  
  .texto-content p span {
    color: var(--iteazul);
    font-weight: bold;
    display: inline;
  }
  
  .lista-concepts {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .lista-concepts li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .lista-concepts i {
    color: var(--iteazul); 
    margin-right: 10px;
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  .lista-concepts span {
    font-size: 2rem;
    color: var(--itetext);
  }

  .lista-concepts span strong{
    color: var(--iteorange);
  }
  
  .img-contenido {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
  }
  
  .img-contenido img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }
  
  /* Estilos Responsivos */
  @media (max-width: 768px) {
    .procesos-virtual .container {
      flex-direction: column;
      align-items: center;
      width: 95%;
    }
  
    .texto-content, .img-contenido {
      max-width: 100%;
    }
  
    .texto-content h2 {
      text-align: center;
      font-size: 2.5rem;
    }
  
    .texto-content p,
    .lista-concepts li span {
      text-align: justify;
      font-size: 2rem; 
    }
  
    .img-contenido img {
      max-width: 100%;
      height: auto;
    }
  }

  /*
  +++++++
  # INFORMACIÓN
  ++++++++
  */

  .modulos-text {
    max-width: 75%;
    margin: 0 auto;
    font-size: 2.8rem;
    line-height: 1.6;
    color: var(--itetext); 
    text-align: center;
    font-weight: bold;
  }
  
  .orange-text {
    color: var(--iteorange); 
    font-weight: bold;
    display: inline;
  }
  
  .blue-text {
    color: var(--iteazul); 
    font-weight: bold;
    display: inline;
  }
  
  .modulos-text p {
    font-style: italic;
  }

  @media (max-width: 768px) {
    .modulos-text {
      max-width: 95%;
      margin: 0 auto;
      font-size: 2rem;
    }
  }
  
  /*
  +++++++
  # Brindamos
  ++++++++
  */

  .brinda{
    padding: 20px 0px;
    max-width: 100%;
  }

  .brinda img{
    width: 75%;
    margin: 0 auto;
  }

  @media (max-width: 1015px) {
    .brinda{
      padding: 0px 0px;
    }
    .brinda img{
      width:100%;
    }
  }

  /*
  +++++++
  # Servicios
  ++++++++
  */

  .servicios {
    padding: 30px 0px;
    max-width: 100%;
    background-color: #F7F8FC;
  }
  
  .servicios .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .servicios h2 {
    width: 50%;
    font-size: 4rem;
    color: var(--iteorange);
    text-align: left;
    margin-bottom: -200px;
  }
  
  .componentes-coml {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 65%;
    flex-direction: row;
    margin-top: 150px;
  }
  
  .item-component {
    flex: 1 1 calc(45% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
  }
  
  .item-component h3 {
    margin-top: auto;
    font-size: 2rem;
    color: var(--iteazul);
    font-weight: bold;
  }
  
  .item-component img {
    width: 45vh;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin: 0 auto;
  }
  
  .beneficio-rigth {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin-top: 50px;
  }
  
  .img-derecha {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .img-derecha img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top:  10px;
  }
  
  .img-derecha p {
    margin: 0 auto;
    text-align: center; 
    font-size: 2rem;
  }

  .img-derecha .text-center {
    margin: 0 auto;
    font-size: 2rem;
    color: var(--iteazul);
    font-weight: bold;
    text-align: center;
  }
  
  @media (max-width: 992px) {
    .servicios .container {
      flex-direction: column;
      align-items: center;
    }
  
    .componentes-coml {
      max-width: 100%;
      justify-content: center;
    }
  
    .item-component {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  
    .img-derecha img {
      max-width: 300px;
    }
  
    .text-center {
      position: static;
      transform: none;
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .componentes-coml {
      flex-direction: column;
      margin-top: 190px;
    }

    .servicios h2 {
      width: 95%;
      font-size: 3rem;
      text-align: center;
    }
  
    .item-component,
    .beneficio-rigth {
      flex: 1 1 100%;
    }
  
    .img-derecha img {
      max-width: 90%;
      margin: 0 auto;
    }

    .text-center {
     text-align: center;
     margin: 0 auto;
    }

    .beneficio-rigth {
      margin-top: 2px;
    }
  }
  
/*
  +++++++++++++++++++++++
  #  PLANES - TARIFAS
  +++++++++++++++++++++++
*/

.plan-tarifa {
  text-align: center;
  padding: 40px 0;
  background-color: #F7F7FB; 
}

.plan-tarifa .container {
  max-width: 75%;
  margin: 0 auto;
}

.components {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.components h2 {
  width: 100%;
  font-size: 4rem;
  color: var(--iteazul); 
  margin-bottom: 40px;
}

.col-plan-tarifa {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.col-plan-tarifa img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.col-plan-tarifa p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--itetext);
  margin-bottom: 20px;
  font-weight: 600;
}

.col-plan-tarifa a img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.col-plan-tarifa a img:hover {
  transform: scale(1.05);
}

/* Estilos Responsivos */
@media (max-width: 1024px) {
  .plan-tarifa .container {
    max-width: 85%; 
  }

  .components h2 {
    font-size: 3rem; 
  }
}

@media (max-width: 768px) {
  .components {
    flex-direction: column;
    align-items: center;
  }

  .components h2 {
    font-size: 3rem; 
  }

  .col-plan-tarifa {
    max-width: 100%; 
  }

  .col-plan-tarifa a img {
    max-width: 80%; 
  }

  .col-plan-tarifa p {
    font-size: 18px;
  }
}

/*-----------------------------------*\
  # Software a Medida
\*-----------------------------------*/
  
/*
  +++++++++++++++++++++++
  #  PORQUE
  +++++++++++++++++++++++
*/

.question-simple {
  width: 75%;
  font-size: 4rem;
  color: var(--iteorange); 
  text-align: center; 
  font-weight: bold; 
  margin: 20px 0; 
  font-style: italic;
  margin: 0 auto;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .question-simple {
    font-size: 3rem; 
  }
}

@media (max-width: 768px) {
  .question-simple {
    font-size: 2.5rem; 
    margin-top: 10px;
  }

  .question-simple {
    width: 95%;
  }
}

.icons-servicio {
  padding: 20px 0;
}

.icons-servicio .container {
  max-width: 75%;
  margin: 0 auto;
}

.context-icons {
  display: flex;
  flex-direction: column;
}

.icons-infos {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.icon-section {
  flex: 1;
  text-align: center;
  margin-bottom: 20px;
}

.icon-section img {
  width: 190px;
  height: auto;
  margin-bottom: 10px;
  margin: 0 auto;
}

.text-icon {
  font-size: 2.5rem;
  color: var(--itetext);
}

.icons-infos:first-child .icon-section {
  flex-basis: 23%; 
}

.icons-infos:last-child .icon-section {
  flex-basis: 45%;
}

@media (max-width: 768px) {
  .icons-servicio .container {
    max-width: 95%;
  }
  .icons-infos {
      flex-wrap: wrap;
  }

  .icons-infos:first-child .icon-section,
  .icons-infos:last-child .icon-section {
      flex-basis: 45%;
  }
}

@media (max-width: 480px) {
  .icons-infos:first-child .icon-section,
  .icons-infos:last-child .icon-section {
      flex-basis: 100%;
  }

  .icon-section img {
      width: 200px;
  }

  .text-icon {
      font-size: 2rem;
  }
}

/*
  +++++++++++++++++++++++
  #  FLUJO
  +++++++++++++++++++++++
*/

.flujo{
  padding: 20px 0px;
  max-width: 100%;
}

.flujo img{
  width: 85%;
  margin: 0 auto;
}

.flujo h2{
  font-size: 5rem;
  color: var(--iteorange);
  font-style: italic;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1015px) {
  .flujo{
    padding: 0px 0px;
    max-width: 90%;
    margin: 0 auto;
  }
  .flujo img{
    width:100%;
  }
  .flujo h2{
    font-size: 3rem;
  }
}

/*
  +++++++++++++++++++++++
  #  OVERLAY - IMAGENES
  +++++++++++++++++++++++
*/

.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}

/* Estilo de la imagen dentro del overlay */
.overlay-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

/* Botón para cerrar el overlay */
.close-overlay {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Cuando el overlay está activo */
.image-overlay.active {
  visibility: visible;
  opacity: 1;
}

/*
  +++++++++++++++++++++++
  # Terminos
  +++++++++++++++++++++++
*/

.terminos-condiciones .container{
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .terminos-condiciones{
    margin-top: 8em;
  }
  }

  @media (max-width: 768px) {
    .terminos-condiciones{
      margin-top: 5em;
    }
    }
 @media (max-width: 768px) {
  .seccion-termino p {
    font-size: 15px;
    text-align: justify;
  }
  .seccion-termino h3{
    font-size: 20px;
  }
    }

.h1-terminos {
  color: #000;
  font-size: 30px;
}

.seccion-termino{
  margin-top: 1em;
  color: #444444;
}

.seccion-termino h3{
  font-size: 25px;
}

.seccion-termino p {
  text-align: justify;
}


/****** Animaciones *********/

/*+++++ h2 y p +++++*/

.efect-left {
  opacity: 0;
  transform: translateX(-10%);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.efect-left-visible {
  opacity: 1;
  transform: translateX(0); 
}

/*+++++ boton-accion +++++*/

.efect-rigth-salto {
  opacity: 0;
  transform: translateX(20px); 
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.efect-rigth-salto-visible {
  opacity: 1;
  transform: translateX(0) scale(1.02);
  animation: bounce 0.8s ease forwards 1.5s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(0) scale(1.03);
  }
}

/*+++++ aparicion +++++*/

.efect-aparicion {
  opacity: 0;
  transform: scale(0.9); 
  transition: opacity 1.5s ease-out, transform 1.5s ease-out; 
}

.efect-aparicion-visible {
  opacity: 1;
  transform: scale(1);
}

/*+++++ arriba-abajo +++++*/

.efect-arriba {
  opacity: 0;
  transform: translateY(-20px); 
  transition: opacity 1.5s ease-out, transform 1.5s ease-out; 
}

.efect-arriba-visible {
  opacity: 1;
  transform: translateY(0);
}

/*+++++ derecha +++++*/

.efect-rigth {
  opacity: 0;
  transform: translateX(10%); /* Reducir el desplazamiento inicial */
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.efect-rigth-visible {
  opacity: 1;
  transform: translateX(0); 
}

/*+++++ pequeño-grande +++++*/

.efect-pequeño-grande {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.efect-pequeño-grande-visible {
  opacity: 1;
  transform: scale(1); 
}

@media (max-width: 768px) { 
  .efect-pequeño-grande {
    transition: opacity 3s ease-out, transform 2s ease-out; 
     
  }
}

/*+++++ abajo-arriba +++++*/

.efect-abajo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.efect-abajo-visible {
  opacity: 1;
  transform: translateY(0);
}

/*+++++ grande-pequeño +++++*/

.efect-grande-pequeño {
  opacity: 0;
  transform: scale(2); 
  transition: opacity 1s ease-out, transform 1s ease-out; 
  transition-delay: 1s; 
}

.efect-grande-pequeño-visible {
  opacity: 1;
  transform: scale(1); 
}

/* izquierda-rapido */

.efect-left-run {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1.5s ease-out, transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.efect-left-run-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) { 
  .efect-left-run {
  transform: translateX(-0%);
  }
}

