html, body {
  max-width: 100%;
  overflow-x: hidden; /* Evita scroll fantasma */
  scroll-behavior: smooth;
}

#include-contact {
  min-height: 100vh; /* ajusta según el tamaño que suele tener tu sección */
  display: block;
}

#about-us-principal {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 93vh;
  background: linear-gradient(
    135deg,
    rgb(0, 15, 29) 0%,
    rgb(10, 30, 50) 50%,
    rgb(0, 15, 29) 100%
  );
  color: rgb(247, 247, 247);
}

#about-us-principal .content-principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 24px;
  padding-right: 24px;
}

#about-us-principal h2,
#about-us-principal h3 {
  margin: 0;
  padding: 0;
  line-height: 1.1;
  word-break: break-word;
}

/* H2 siempre más grande que H3 */
#about-us-principal h2 {
  font-size: 7.6em;
  font-weight: bold;
}

#about-us-principal h3 {
  font-size: 1.8em;
  font-weight: 500;
}



/* Animación: caída suave con leve deriva horizontal */
@keyframes coposCaen {
  0% {
    background-position:
      0px 0px,
      12px 8px,
      24px 16px;
  }
  100% {
    /* Y grande = “caen”, X leve = “derivan” */
    background-position:
      -60px 900px,
      8px 700px,
      20px 1050px;
  }
}

@media (max-width: 950px){
  #about-us-principal h2{
    font-size: 6.8em;
  }
}

@media (max-width: 850px){
  #about-us-principal h2{
    font-size: 6em;
  }

  #about-us-principal h3{
    font-size: 1.5em;
  }
}

@media (max-width: 750px){
  #about-us-principal h2{
    font-size: 4.8em;
  }

  #about-us-principal h3{
    font-size: 1.2em;
  }
}

@media (max-width: 550px){
  #about-us-principal{
    height: 83vh;
  }
  #about-us-principal h2{
    font-size: 2.8em;
  }
  #about-us-principal h3{
    font-size: 1em;
  }
}

@media (max-width: 370px){
  #about-us-principal h2{
    font-size: 2.4em;
  }
  #about-us-principal h3{
    font-size: 13px;
  }
}

@media (max-width: 330px){
  #about-us-principal h2{
    font-size: 2.2em;
  }
  #about-us-principal h3{
    font-size: 11px;
  }
}

#about-us-secundary{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 93vh;
  color: rgb(0, 15, 29);
  background-color: rgb(242, 238, 227);
}

#about-us-secundary .content-secundary{
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: space-between;
  max-width: 1500px;
  gap: 60px;
  padding-left: 24px;
  padding-right: 24px;
}

#about-us-secundary .text-about-us{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
  align-content: space-between;
  text-align: left;
}

#about-us-secundary .text-about-us h2{
  font-size: 3.5em;
  font-weight: bold;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}

#about-us-secundary .text-about-us h3{
  font-size: 1.2em;
  font-weight: 400;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}

#about-us-secundary .icon-about-uspage{
  align-items: self-start;
  height: 28em;
  padding: 0;
  margin: 0;
}

@media (max-width: 1400px){
  #about-us-secundary .content-secundary{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: space-between;
  gap: 40px;
  }

  #about-us-secundary .text-about-us{
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #about-us-secundary .text-about-us h2{
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 26px;
  }

  #about-us-secundary .text-about-us h3{
  text-align: justify;        /* hace que el texto se vea cuadrado */
  max-width: 850px;           /* limita el ancho para que se vea más armónico */
  margin-bottom: 20px;
  font-size: 1.1em;
  }

  #about-us-secundary .icon-about-uspage{
  align-items: self-start;
  height: 22em;
  }
}


@media (max-width: 800px){
  #about-us-secundary .content-secundary{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: space-between;
  gap: 40px;
  }

  #about-us-secundary .text-about-us{
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #about-us-secundary .text-about-us h2{
    font-size: 2.9em;
    font-weight: bold;
    margin-bottom: 30px;
  }

  #about-us-secundary .text-about-us h3{
  text-align: justify;        /* hace que el texto se vea cuadrado */
  max-width: 850px;           /* limita el ancho para que se vea más armónico */
  margin-bottom: 10px;
  font-size: 1em;
  }

  #about-us-secundary .icon-about-uspage{
  align-items: self-start;
  height: 18em;
  }
}

@media (max-width: 567px){
  #about-us-secundary .text-about-us h2{
    font-size: 2.4em;
  }

  #about-us-secundary .icon-about-uspage{
  align-items: self-start;
  height: 16em;
  }
}


@media (max-width: 480px){
  #about-us-secundary .content-secundary{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: space-between;
  gap: 40px;
  }

  #about-us-secundary .text-about-us{
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #about-us-secundary .text-about-us h2{
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 30px;
  }

  #about-us-secundary .text-about-us h3{
  text-align: justify;        /* hace que el texto se vea cuadrado */
  max-width: 850px;           /* limita el ancho para que se vea más armónico */
  margin-bottom: 10px;
  font-size: 14px;
  }

  #about-us-secundary .icon-about-uspage{
  align-items: center;
  height: 16em;
  }
}

@media (max-width: 420px){
  #about-us-secundary .content-secundary{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: space-between;
  gap: 40px;
  }

  #about-us-secundary .text-about-us{
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #about-us-secundary .text-about-us h2{
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 30px;
  }

  #about-us-secundary .text-about-us h3{
  text-align: justify;        /* hace que el texto se vea cuadrado */
  max-width: 850px;           /* limita el ancho para que se vea más armónico */
  margin-bottom: 10px;
  font-size: 12px;
  }

  #about-us-secundary .icon-about-uspage{
  align-items: center;
  height: 14em;
  }
}

@media (max-width: 380px){
  #about-us-secundary .content-secundary{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: space-between;
  gap: 20px;
  }

  #about-us-secundary .text-about-us{
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #about-us-secundary .text-about-us h2{
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 20px;
  }

  #about-us-secundary .text-about-us h3{
  text-align: justify;        /* hace que el texto se vea cuadrado */
  max-width: 850px;           /* limita el ancho para que se vea más armónico */
  margin-bottom: 10px;
  font-size: 12px;
  }

  #about-us-secundary .icon-about-uspage{
  align-items: center;
  height: 11em;
  }
}

@media (max-width: 340px){
  #about-us-secundary .text-about-us h2{
    font-size: 1.3em;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  overflow: hidden;        /* 🔥 evita que se vea cualquier línea fantasma */
  line-height: 0;          /* 🔥 elimina altura de línea extra */
}

.whatsapp-float:hover {
  background-color: #1ebc5c;
  transform: scale(1.1);
}

/* Ajuste del ícono */
.whatsapp-float i {
  display: block;
  line-height: 0;          /* 🔥 asegura que no genere espacio debajo */
  margin: 0;
  padding: 0;
  font-size: inherit;      /* mantiene el tamaño exacto del contenedor */
}