
@font-face {
  font-family: 'Futura';
  src: url('../fonts/Poppins-Medium') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url('../fonts/Poppins-Bold') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url('../fonts/Poppins-MediumItalic') format('opentype');
  font-weight: italic;
  font-style: italic;
}

:root {

  /**
   * colors
   */
   --iteblue: #072d70;
   --iteorange: #F99400;
   --itetext:#808080;
   --iteback:#fef7f8;
   


  --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(--itetext);
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: 'Futura', sans-serif;
}

body, html {
  overflow-x: hidden;
}

body.nav-active { overflow: hidden; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  # BODY
\*-----------------------------------*/


/*
  +++++++++++++++++++++++
  # MODULOS
  +++++++++++++++++++++++
*/

.quienes-somos-section {
  padding: 50px 0px;
}

.quienes-somos-section .container {
  max-width: 75%;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -30px;
  gap: 20px;
}

.text-content {
  flex: 0 1 45%; 
}

.text-content h2 {
  font-size: 40px;
  color: var(--iteorange);
  font-weight: 700;
  font-style: italic;
}

.text-content p {
  font-size: 18px;
  color: #797979;
  font-weight: 400;
  margin: 10px 0;
  text-align: justify;
}

.text-content span {
  color: var(--iteblue);
  display: inline; 
}

.video-content {
  margin-top: 40px;
  flex: 0 1 45%; 
}

.video-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 15px solid var(--iteblue); 
  background-color: var(--iteblue);
}

.video-wrapper img {
  border-radius: 15px;
  width: 100%; 
  height: auto;
  cursor: pointer;
}

.video-overlay {
  display: none; 
}

@media (max-width: 768px) {
  .quienes-somos-section .container {
    max-width: 95%;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-content {
    flex: 1;
    max-width: 100%;
  }

  .text-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .text-content p {
    font-size: 14px;
    text-align: justify;
    margin: 0 auto;
    width: 90%;
  }

  .video-content {
    flex: 1;
    max-width: 100%;
    margin-top: 20px;
  }

  iframe {
    width: 310px; 
    height: 206px; 
  }
}


  /*
  +++++++
  # 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(--iteblue); 
    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;
    }
  }
  
  /* 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: -50px;
    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(--iteblue);
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }

  .bloc-content {
    font-size: 1.5rem;
    color: var(--iteletras); 
    line-height: 1.6;
    text-align: justify;
    font-weight: 500;
  }

  .bloc-content span {
    color: var(--iteblue);
    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(--iteblue);
      margin-bottom: 15px;
    }

    .bloc-info-mobile p {
      font-size: 2.4rem;
      color: var(--iteletras); 
      line-height: 1.6;
      text-align: justify;
      margin: 0;
    }

    .bloc-info-mobile p span {
      font-weight: bold;
      color: var(--iteblue); 
      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;
    }
  }

    /*
    +++++++
    # SANCIONES
    ++++++++
    */

    .banner-section {
      position: relative;
      background-image: url('../img/Nosotros/sanciones.webp');
      background-size: cover;
      background-position: center;
      height: 100vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      z-index: 1; 
  }
  
  .context-sancion {
      position: relative;
      z-index: 3; 
      width: 100%;
      height: 100%;
      background-color: rgba(37, 36, 36, 0.7);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      color: #FFFFFF;
  }
  
  .context-sancion h2, .context-sancion h3 {
      margin: 0;
  }
  
  .context-sancion h2 {
    width: 70%;
    font-size: 5.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.context-sancion h3 {
    font-size: 5.5rem;
    font-weight: 600;
    color: var(--iteorange);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

  
  @media (max-width: 768px) {
      .banner-section {
          height: 300px;
      }
  
      .context-sancion h2 {
          width: 90%;
          font-size: 2.5rem;
      }
  
      .context-sancion h3 {
          font-size: 2.2rem;
      }
  }
  

    /*
    +++++++++++++++++++++
    +++++++++++++++++++++
    # CONTÁCTANOS
    +++++++++++++++++++++
    +++++++++++++++++++++
    */

  .content-mapa {
      text-align: center;
      padding: 20px 0;
  }
  
  .content-mapa h2 {
      font-size: 3.5rem;
      color: var(--iteblue);
      font-weight: 700;
      margin-bottom: 20px;
  }
  
  .content-mapa a {
      display: inline-block;
      border-radius: 10px;
      overflow: hidden;
  }
  
  .content-mapa img {
    margin: 0 auto;
    width: 80%;
    height: auto;
    border-radius: 20px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease-in-out;
  }

  .content-mapa img:hover {
      transform: scale(1.05); 
  }

  @media (max-width: 768px) {
    .content-mapa {
      width: 95%;
      margin: 0 auto;
  }
    .content-mapa img {
      width: 100%;
    }
  }

  /*conversemos*/

.conversemos {
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

.conversemos h2 {
    font-size: 3rem;
    color: var(--iteblue); 
    font-weight: 700;
    margin-bottom: 40px;
}

.context-conversemos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.col-conversemos {
  flex: 1;
  min-width: 300px;
  max-width: 350px; 
  text-align: left;
  justify-content: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.col-conversemos p {
    font-size: 1.8rem;
    color: #1d1d1b;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.col-conversemos img {
    width: 45px; 
    height: auto;
    margin-right: 15px;
}

.col-conversemos p:last-child {
    margin-bottom: 0;
}

.col-conversemos a {
    margin-right: 20px;
}

.col-conversemos a img {
    width: 48px;
    height: auto;
    transition: transform 0.3s ease-in-out; 
}

.col-conversemos a img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
  .conversemos {
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }

  .context-conversemos {
    flex-direction: column;
    align-items: stretch;  
  }

  .col-conversemos {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .col-conversemos p {
    display: flex;      
    align-items: center;
    justify-content: flex-start;
  }

  .col-conversemos img {
    margin-right: 8px;
  }

  .col-conversemos .redes {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;           
  }
}























/*
  +++++++++++++++++++++++
  #   QUIERO COTIZAR
  +++++++++++++++++++++++
*/

.btn-quiero-cotizar {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-quiero-cotizar img {
  width: 15%;
  height: auto;
}

@media (max-width: 768px) {
  .btn-quiero-cotizar img {
    width: 65%;
    height: auto;
  }
}

.question-simple {
  font-size: 4rem;
  color: #FF8C00; 
  text-align: center; 
  font-weight: 500; 
  margin: 20px 0; 
  font-style: italic;
}

@media (max-width: 1024px) {
  .question-simple {
    font-size: 3rem; 
  }
}

@media (max-width: 768px) {
  .question-simple {
    font-size: 2.5rem; 
  }
}

/*
  +++++++++++++++++++++++
  #  VISTAS
  +++++++++++++++++++++++
*/

.boton-container {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto 20px auto;
  flex-wrap: wrap;
}

.boton-descripcion-container {
  display: flex;
  flex-direction: column;
  align-items: center; 
  width: 22%;
}

.boton {
  padding: 10px 5px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--iteblue);
  background-color: #ECECEC;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 80%; 
  text-align: center;
  border-radius: 10px;
  margin-bottom: 10px; 
}

.boton.activo {
  background-color: var(--iteblue);
  color: white;
}

.descripcion {
  display: none;
  font-size: 1.8rem;
  color: #555;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: left;

}

.descripcion.activo {
  display: block;
}

.descripcion li {
  margin-bottom: 10px;
}

.descripcion li::before {
  content: "» ";
  color: #1A2E97;
  font-weight: bold;
}

@media (max-width: 768px) {
  .boton-container {
      flex-direction: column; 
      width: 90%; 
  }

  .boton-descripcion-container {
      width: 100%;
  }

  .boton {
      width: 85%; 
  }
}

@media (max-width: 480px) {
  .boton {
      font-size: 1.5rem; 

  }

  .descripcion {
      font-size: 1.8rem; 
  }
}

/*
  +++++++++++++++++++++++
  #  ADQUIRIR SOFTWARE
  +++++++++++++++++++++++
*/

.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: 2rem;
  color: #757575;
  font-weight: bold;
}

.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;
  }
}

/*
  +++++++++++++++++++++++
  #  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(--iteblue); 
  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: 16px;
  color: #AAAAAA;
  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;
  }
}

/****** Animaciones *********/

/*+++++ h2 y p +++++*/

.efect-left {
  opacity: 0;
  transform: translateX(-20px); 
  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%); 
  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); 
}

/*+++++ 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 0.1s ease-out, transform 0.6s ease-out; 
  transition-delay: 1ms; 
}

.efect-grande-pequeño-visible {
  opacity: 1;
  transform: scale(1); 
}

/* salto-brillo */

.efect-responw {
  opacity: 0;
  transform: translateY(20px); 
  filter: brightness(0.8); 
  transition: opacity 1s ease-out, transform 1s ease-out, filter 1s ease-out; 
}

.efect-responw-visible {
  opacity: 1;
  transform: translateY(0);
  filter: brightness(1.2); 
  animation: bounce-brightness 0.6s ease forwards; 
}

@keyframes bounce-brightness {
  0% {
    transform: translateY(0);
    filter: brightness(1.2); 
  }
  50% {
    transform: translateY(-10px);
    filter: brightness(1.5);
  }
  100% {
    transform: translateY(0);
    filter: brightness(1.2); 
  }
}
