@font-face {
  font-family: 'Monserrat';
  src: url('../fonts/Montserrat-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Monserrat';
  src: url('../fonts/Montserrat-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Monserrat';
  src: url('../fonts/Montserrat-SemiBoldItalic.otf') format('opentype');
  font-weight: italic;
  font-style: normal;
}

:root {

  /**
   * colors
   */

  --iteblue: #2f4daa;
  --itecuadro: #f0f6f7;
  --itefondo: #E1E1E1;
  --itetitles:#3dc2ec;
  --iteparrafos: #666666;



  --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 {
  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-size: 10px;
  scroll-behavior: smooth;
}

main{
  margin-top: 7em;
}

body {
  background-color: white;
  color: var(--iteparrafos);
  font-size: 1.6rem;
  line-height: 1.7;
}


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%); }


/*-----------------------------------*\
  # NOSOTROS
\*-----------------------------------*/


/*
  +++++++++++++++++++++++
  # SOMOS
  +++++++++++++++++++++++
*/
  
.quienes-somos-section {
  padding: 30px 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(--iteblue);
}

.text-content p {
  font-size: 18px;
  color: #797979;
  margin: 10px 0;
  text-align: justify;
}

.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(--itetitles); 
  background-color: var(--itetitles);
}

.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; 
  }
}

.container-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%; 
}

.btn_servis {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Monserrat', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: white;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(90deg, var(--iteblue), var(--itetitles));
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(2, 188, 255, 0.658);
  transition: transform 0.2s ease-in-out;
}

.btn_servis:hover {
  transform: scale(1.05);
}

.btn_servis:active {
  transform: scale(0.98);
}


/*
  +++++++++++++++++++++++
  # IMG-TEXT
  +++++++++++++++++++++++
*/

.img-banner-nosotros {
  margin-top: 20px;
  width: 100%;
  height: auto;
  display: block;
}


/*-----------------------------------*\
  # CONTACTANOS
\*-----------------------------------*/


.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) {
.context-conversemos {
    flex-direction: column;
    align-items: center;
}

.col-conversemos {
    text-align: center;
    max-width: 100%;
}

.col-conversemos p {
    justify-content: center;
}

.col-conversemos img {
    margin-right: 5px;
}

.col-conversemos a {
    margin-right: 10px;
}

.conversemos {
  width: 95%;
}

.conversemos h2 {
  font-size: 3rem;
  color: var(--iteblue); 
  font-weight: 700;
  margin-bottom: 5px;
}
}

/*+++++ 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 2.5s ease-out, transform 2.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 1.5s ease-out, transform 2s 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%);
  }
}