
.hero-sections {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}

.background-img {
  width: 100%;
  /* height: 100vh; */
  object-fit: cover;
  display: block;
}

.hero-sections .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4rem;
  box-sizing: border-box;
  color: white;
  min-height: 100vh;
}

.hero-sections .discover {
  display: flex;
  flex-direction: column;
  width: 1150px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
  
}

.hero-sections .div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 55px;
  align-self: stretch;
  width: 100%;
  max-width: 600px;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.hero-sections .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.hero-sections .frame-3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-sections .discover-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 55px;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.hero-sections .ahuri-EL-FUTURO-DE {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Benzin-Medium-Regular", Helvetica;
  font-weight: 400;
  color: var(--global-tokens-light-colors-primary-alpha-10);
  font-size: clamp(2rem, 6vw, 3.125rem);
  letter-spacing: 0;
  line-height: 1;
  padding-bottom: 2rem;
}

.hero-sections .text-wrapper {
  line-height: 1.2;
}

.hero-sections .span {
  font-family: "Raleway-Extrabold", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 8vw, 4.375rem);
  line-height: 1.1;

}

.hero-sections .text-wrapper-2 {
  font-family: "Raleway-ExtraBold", Helvetica;
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 4.375rem);
  line-height: 1.1;
}

.hero-sections .p {
  position: relative;
  max-width: 100%;
  font-family: "Raleway", Helvetica;
  font-weight: 500;
  color: #aaa9a9;
  font-size: clamp(1rem, 3vw, 1.6875rem);
  letter-spacing: 0;
  line-height: 1.3;
}

.hero-sections .discover-3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.botn-principal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--global-tokens-light-colors-primary-alpha-10);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid;
  box-shadow: var(--shadows-shadow-xs);
  border-color: var(--global-tokens-light-colors-primary-alpha-10);
  cursor: pointer;
  transition: all 0.3s ease;
}

.botn-principal:hover {
  background-color: var(--global-tokens-light-colors-secondary-100);
  border-color: var(--global-tokens-light-colors-secondary-100);
}

.botn-principal:hover span,
.botn-principal:hover svg {
  color: #ffffff;
}

.hero-sections .text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--global-tokens-light-colors-neutral-100);
  font-size: var(--text-md-semibold-font-size);
  letter-spacing: var(--text-md-semibold-letter-spacing);
  line-height: var(--text-md-semibold-line-height);
  white-space: nowrap;
  font-style: var(--text-md-semibold-font-style);
}

.hero-sections .arrow-forward {
  position: relative;
  width: 18px;
  height: 18px;
}

.hero-sections .svg {
  width: 18px;
  height: 18px;
  color: var(--global-tokens-light-colors-neutral-100);
}

/* Media Queries para Responsive */

/* Tablets grandes */
@media (max-width: 1200px) {
  .hero-sections .frame {
    padding: 0 3rem;
  }

  .hero-sections .div {
    max-width: 550px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .hero-sections .frame {
    padding: 0 2rem;
  }

  .hero-sections .div {
    max-width: 500px;
    gap: 3rem;
  }

  .hero-sections .ahuri-EL-FUTURO-DE {
    padding-bottom: 1.5rem;
  }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
  .hero-sections {
    min-height: 100vh;
  }

  .background-img {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-sections .frame {
    padding: 8rem 1.5rem 4rem 1.5rem;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
  }

  .hero-sections .div {
    max-width: 100%;
    width: 100%;
    gap: 2.5rem;
  }

  .hero-sections .frame-2 {
    gap: 1.5rem;
  }

  .hero-sections .frame-3 {
    gap: 0.8rem;
    width: 100%;
  }

  .hero-sections .ahuri-EL-FUTURO-DE {
    padding-bottom: 1rem;
  }
}

/* Móviles grandes */
@media (max-width: 640px) {
  .hero-sections .frame {
    padding: 6rem 1rem 4rem 1rem;
    justify-content: flex-start;
  }

  .hero-sections .div {
    gap: 2rem;
  }

  .hero-sections .frame-3 {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .botn-principal {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
}

/* Móviles */
@media (max-width: 480px) {
  .hero-sections .frame {
    padding: 5rem 0.8rem 3rem 0.8rem;
  }

  .hero-sections .div {
    gap: 1.5rem;
  }

  .hero-sections .frame-2 {
    gap: 1rem;
  }

  .hero-sections .ahuri-EL-FUTURO-DE {
    padding-bottom: 0.5rem;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .hero-sections .frame {
    padding: 4rem 0.5rem 2rem 0.5rem;
  }

  .botn-principal {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .hero-sections .frame {
    padding: 0 0.5rem;
    padding-top: 4rem;
  }

  .botn-principal {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
.discover {
  padding: 4rem 1rem;
  
}

.discover .text-wrapper {
  text-align: center;
  font-family: var(--global-tokens-body-b-4-font-family);
  font-weight: var(--global-tokens-body-b-4-font-weight);
  color: var(--global-tokens-light-colors-primary-100);
  font-size: clamp(2.5rem, 6vw, 3rem);
  padding-bottom: 4rem;
}


.discover-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  place-items: center;
}

.discover-cards>.servicio-default:nth-child(7) {
  grid-column: 2 / 3;
}

@media (max-width: 992px) {
  .discover-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover-cards>.servicio-default:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .discover-cards {
    grid-template-columns: 1fr;
  }

  .discover-cards>.servicio-default:nth-child(7) {
    grid-column: auto;
    justify-self: center;
  }
}
.discover .servicio-default {
  display: flex;
  flex-direction: column;
  max-width: 352px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  position: relative;
  border-radius: 20px;
  border: 1px solid;
  border-color: #9c329d80;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #470B72;
}

.discover .servicio-default:hover {
  transform: scale(1.1);
  background-color: var(--global-tokens-light-colors-primary-100);
}

.discover .servicio-default:hover h3,
.discover .servicio-default:hover p,
.discover .servicio-default:hover span,
.discover .servicio-default:hover svg {
  color: #ffffff;
}

.discover .img {
  position: relative;
  width: 40px;
  height: 40px;
}

.discover .desarrollo-de {
  position: relative;
  align-self: stretch;
  font-family: var(--global-tokens-body-b-5-font-family);
  font-weight: var(--global-tokens-body-b-5-font-weight);
  color: var(--global-tokens-light-colors-primary-100);
  font-size: var(--global-tokens-body-b-5-font-size);
  text-align: center;
  letter-spacing: var(--global-tokens-body-b-5-letter-spacing);
  line-height: var(--global-tokens-body-b-5-line-height);
  font-style: var(--global-tokens-body-b-5-font-style);
}

.discover .users-can-access-a {
  position: relative;
  align-self: stretch;
  font-family: var(--global-tokens-body-b-3-font-family);
  font-weight: var(--global-tokens-body-b-3-font-weight);
  color: #7f7f7f;
  font-size: var(--global-tokens-body-b-3-font-size);
  text-align: center;
  letter-spacing: var(--global-tokens-body-b-3-letter-spacing);
  line-height: var(--global-tokens-body-b-3-line-height);
  font-style: var(--global-tokens-body-b-3-font-style);
}

.discover .buttons-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.discover .text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--global-tokens-body-b-2-font-family);
  font-weight: var(--global-tokens-body-b-2-font-weight);
  color: var(--global-tokens-light-colors-secondary-100);
  font-size: var(--global-tokens-body-b-2-font-size);
  letter-spacing: var(--global-tokens-body-b-2-letter-spacing);
  line-height: var(--global-tokens-body-b-2-line-height);
  white-space: nowrap;
  font-style: var(--global-tokens-body-b-2-font-style);
}

.discover .navigate-next {
  position: relative;
  width: 20px;
  height: 20px;
}



.growth-with-you {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.growth-with-you .frame {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  background-image: image-set(
    url("../img/index/grow-with-you.webp") type("image/webp"),
    url("../img/index/grow-with-you.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5rem;
  height: 100vh;
  flex-wrap: wrap;
  gap: 2rem;
}

.growth-with-you .div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-width: 300px;
  flex: 1;
}

.growth-with-you .frame-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  align-items: flex-start;
  position: relative;
}

.growth-with-you .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--global-tokens-body-b-2-font-family);
  font-weight: var(--global-tokens-body-b-2-font-weight);
  color: var(--global-tokens-light-colors-primary-100);
  font-size: var(--global-tokens-body-b-2-font-size);
  text-align: center;
  letter-spacing: var(--global-tokens-body-b-2-letter-spacing);
  line-height: var(--global-tokens-body-b-2-line-height);
  white-space: nowrap;
  font-style: var(--global-tokens-body-b-2-font-style);
}

.growth-with-you .sofware-hecho-para {
  position: relative;
  align-self: stretch;
  font-family: var(--global-tokens-body-b-4-font-family);
  font-weight: var(--global-tokens-body-b-4-font-weight);
  color: var(--global-tokens-light-colors-neutral-100);
  font-size: clamp(2.3rem, 6vw, 3rem);
  letter-spacing: var(--global-tokens-body-b-4-letter-spacing);
  line-height: var(--global-tokens-body-b-4-line-height);
  font-style: var(--global-tokens-body-b-4-font-style);
}

.growth-with-you .text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--global-tokens-light-colors-neutral-100);
  font-size: var(--text-md-semibold-font-size);
  letter-spacing: var(--text-md-semibold-letter-spacing);
  line-height: var(--text-md-semibold-line-height);
  white-space: nowrap;
  font-style: var(--text-md-semibold-font-style);
}

.growth-with-you .arrow-forward {
  position: relative;
  width: 18px;
  height: 18px;
}

.growth-with-you .frame-3 {
  height: 100%;
  border-left-width: 1px;
  border-left-style: solid;
  border-color: var(--global-tokens-light-colors-primary-alpha-10);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 1;
  min-width: 350px;
}

.growth-with-you .diferencial {
  gap: 16px;
  padding: 0px 24px;
}

.growth-with-you .frame-4 {
  color: var(--global-tokens-light-colors-primary-alpha-10);
  font-size: x-large;
  font-family: var(--des-caracteristicas-font-family);
  transition: all 0.3s ease;
  padding-bottom: 1rem;
}

.growth-with-you .frame-4:hover {
  color: var(--global-tokens-light-colors-secondary-100);
}

.growth-with-you .b-squeda-constante {
  position: relative;
  width: 100%;
  max-width: 503px;
  font-family: var(--des-caracteristicas-font-family);
  font-weight: var(--des-caracteristicas-font-weight);
  color: #f3f3f3;
  font-size: var(--des-caracteristicas-font-size);
  letter-spacing: var(--des-caracteristicas-letter-spacing);
  line-height: var(--des-caracteristicas-line-height);
  font-style: var(--des-caracteristicas-font-style);
}

/* Media Queries para Responsive */

@media (max-width: 1024px) {
  .growth-with-you .frame {
    padding: 3rem 2rem;
    gap: 1.5rem;
  }

  .growth-with-you .frame-3 {
    min-width: 300px;
  }

  .growth-with-you .b-squeda-constante {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .growth-with-you .frame {
    flex-direction: column;
    padding: 2rem 1.5rem;
    height: auto;
    min-height: 100vh;
    gap: 3rem;
  }

  .growth-with-you .div {
    min-width: unset;
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .growth-with-you .frame-3 {
    border-left: none;
    border-top: 1px solid var(--global-tokens-light-colors-primary-alpha-10);
    padding-top: 2rem;
    min-width: unset;
    width: 100%;
    gap: 2rem;
  }

  .growth-with-you .diferencial {
    padding: 0;
  }

  .growth-with-you .b-squeda-constante {
    max-width: 100%;
  }

  
}

@media (max-width: 480px) {
  .growth-with-you .frame {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }

  .growth-with-you .frame-4 {
    font-size: large;
    padding-bottom: 0.5rem;
  }

  .growth-with-you .diferencial {
    gap: 12px;
  }

  .growth-with-you .sofware-hecho-para {
    
    line-height: 1.3;
  }

  .growth-with-you .text-wrapper {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }
}

@media (max-width: 360px) {
  .growth-with-you .frame {
    padding: 1rem 0.8rem;
  }
}

.solutions-1 .div-wrapper {
  display: flex;
  flex-direction: column;
  width: 1440px;
  gap: 4px;
  flex: 0 0 auto;
  margin-left: -15px;
  margin-right: -15px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.solutions-1 .text-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--global-tokens-body-b-4-font-family);
  font-weight: var(--global-tokens-body-b-4-font-weight);
  color: var(--global-tokens-light-colors-primary-alpha-10);
  font-size: var(--global-tokens-body-b-4-font-size);
  text-align: center;
  letter-spacing: var(--global-tokens-body-b-4-letter-spacing);
  line-height: var(--global-tokens-body-b-4-line-height);
  font-style: var(--global-tokens-body-b-4-font-style);
}

.solutions-1 .div {
  display: inline-flex;
  gap: 32px;
  flex: 0 0 auto;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.solutions-1 .div-2 {
  display: flex;
  flex-direction: column;
  width: 352px;
  gap: 16px;
  padding: 40px 20px;
  background-color: var(--background-colorsgray-white-bg);
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.solutions-1 .div-3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
}

.solutions-1 .img {
  position: relative;
  width: 40px;
  height: 40px;
}

.solutions-1 .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: var(--display-xs-medium-font-family);
  font-weight: var(--display-xs-medium-font-weight);
  color: var(--global-tokens-light-colors-primary-100);
  font-size: var(--display-xs-medium-font-size);
  text-align: center;
  letter-spacing: var(--display-xs-medium-letter-spacing);
  line-height: var(--display-xs-medium-line-height);
  font-style: var(--display-xs-medium-font-style);
}

.solutions-1 .flexcontainer {
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.solutions-1 .text {
  position: relative;
  align-self: stretch;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: var(--text-colors500);
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.solutions-1 .span {
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: #7f7f7f;
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.solutions-1 .flexcontainer-2 {
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.solutions-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 5rem 1rem;
  background-image: image-set(
    url("../img/index/purplebackground.webp") type("image/webp"),
    url("../img/index/purplebackground.png") type("image/png")
  );
  background-size: cover;
  background-position: 50% 50%;
  font-family: var(--global-tokens-body-b-4-font-family);
}

.main-title {
  max-width: 1440px;
  margin: 0 auto;
  font-family: var(--global-tokens-body-b-4-font-family);
  font-weight: var(--global-tokens-body-b-4-font-weight);
  color: var(--global-tokens-light-colors-primary-alpha-10);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
  letter-spacing: var(--global-tokens-body-b-4-letter-spacing);
  line-height: var(--global-tokens-body-b-4-line-height);
  font-style: var(--global-tokens-body-b-4-font-style);
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
}

.solution-card {
  display: flex;
  flex-direction: column;
  width: 352px;
  gap: 16px;
  padding: 40px ;
  background-color: var(--background-colorsgray-white-bg);
  border-radius: 20px;
  align-items: center;
  background-color: white;
  transition: all 0.3s ease;
  
}
.solution-card:hover {
transform: scale(1.1);
background-color:white;
}


.solution-icon {
  width: 40px;
  height: 40px;
}

.solution-title {
  font-family: var(--display-xs-medium-font-family);
  font-weight: var(--display-xs-medium-font-weight);
  color: var(--global-tokens-light-colors-primary-100);
  font-size: 24px;
  text-align: center;
  letter-spacing: var(--display-xs-medium-letter-spacing);
  line-height: var(--display-xs-medium-line-height);
  font-style: var(--display-xs-medium-font-style);
}

.solution-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.solution-list li {
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: #7f7f7f;
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
  margin-bottom: 16px;
  list-style-type: disc; /* Usa puntos */
  padding-left: 15px;
  
}

.solution-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .solutions-1 {
    padding: 50px 15px;
  }

  .solutions-grid {
    flex-direction: column;
    align-items: center;
  }

  .solution-card {
    width: 100%;
    max-width: 352px;
  }
}


.team .frame-wrapper {
  width: 1120px;
  align-items: center;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.team .div {
  flex-direction: column;
  width: 910px;
  align-items: flex-start;
  gap: 4px;
  display: flex;
  position: relative;
}

.team {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.team .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  padding: 4rem;
}

.team .frame-wrapper {
  max-width: 1120px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.team-header {
  display: flex;
  flex-direction: column;
  max-width: 910px;
  width: 100%;
  align-items: flex-start;
  gap: 4px;
}

.team-subtitle {
  font-family: var(--global-tokens-body-b-2-font-family);
  font-weight: var(--global-tokens-body-b-2-font-weight);
  color: var(--global-tokens-light-colors-secondary-100);
  font-size: var(--global-tokens-body-b-2-font-size);
  letter-spacing: var(--global-tokens-body-b-2-letter-spacing);
  line-height: var(--global-tokens-body-b-2-line-height);
  font-style: var(--global-tokens-body-b-2-font-style);
}

.team-title {
  max-width: 915px;
  width: 100%;
  font-family: var(--global-tokens-body-b-4-font-family);
  font-weight: var(--global-tokens-body-b-4-font-weight);
  color: var(--global-tokens-light-colors-primary-100);
  font-size: var(--global-tokens-body-b-4-font-size);
  letter-spacing: var(--global-tokens-body-b-4-letter-spacing);
  line-height: var(--global-tokens-body-b-4-line-height);
  font-style: var(--global-tokens-body-b-4-font-style);
}

@media (max-width: 768px) {
  .team .frame {
    padding: 30px 15px;
  }

  .team-header {
    align-items: center;
    text-align: center;
  }

  .team-title {
    font-size: 36px;
    line-height: 40px;
  }
}

.company-logo {
  padding-top: 60px;
  width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--global-tokens-light-colors-primary-alpha-10);
  width: 100%;
}

.company-logo .frame {
  gap: 50px;
  padding: 50px 15px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--background-colorswhite);
}


 .company-logo .text-wrapper{
  font-family: var(--global-tokens-body-b-4-font-family);
    font-weight: var(--global-tokens-body-b-4-font-weight);
    color: var(--global-tokens-light-colors-primary-100);
    font-size: clamp(2.5rem, 6vw, 3rem);
    text-align: center;
 }

.company-logo .grid-clientes {
  display: flex;
  flex-wrap: wrap; /* Permite que las imágenes bajen si no caben */
  gap: 9rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.grid-clientes img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.juntos {
  font-family: var(--global-tokens-body-b-4-font-family);
  padding: 5rem 0;
}


.juntos .text-wrapper {
  font-family: var(--global-tokens-body-b-4-font-family);
  font-weight: var(--global-tokens-body-b-4-font-weight);
  color: var(--global-tokens-light-colors-primary-100);
  font-size: clamp(2.5rem, 6vw, 3rem);
  text-align: center;
  padding-bottom: 4rem;
}

.juntos .div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.juntos .div-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 4rem 0;
  position: relative;
  flex: 0 0 auto;
}

.juntos .div-3 {
  display: flex;
  max-width: 352px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--background-colorsgray-white-bg);
  border-radius: 20px;
}

.juntos .flexcontainer {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background-color: #F9F9FB;
  padding: 2rem 1rem 8rem 1rem;
  border-radius: 1rem;
}

.juntos .text {
  position: relative;
  align-self: stretch;
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: var(--text-colors500);
  font-size: var(--text-md-regular-font-size);
  text-align: center;
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.juntos .span {
  font-family: var(--text-md-regular-font-family);
  font-weight: var(--text-md-regular-font-weight);
  color: #7f7f7f;
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.juntos .img {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -20px;
  left: 156px;
}

.juntos .div-4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.juntos .img-wrapper {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
}

.juntos .img-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.juntos .div-5 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  position: relative;
  flex: 0 0 auto;
}

.juntos .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--text-md-medium-font-family);
  font-weight: var(--text-md-medium-font-weight);
  color: var(--global-tokens-light-colors-primary-100);
  font-size: var(--text-md-medium-font-size);
  letter-spacing: var(--text-md-medium-letter-spacing);
  line-height: var(--text-md-medium-line-height);
  white-space: nowrap;
  font-style: var(--text-md-medium-font-style);
}

.juntos .text-wrapper-3 {
  position: relative;
  width: fit-content;
  font-family: var(--text-xs-regular-font-family);
  font-weight: var(--text-xs-regular-font-weight);
  color: var(--text-colors500);
  font-size: var(--text-xs-regular-font-size);
  letter-spacing: var(--text-xs-regular-letter-spacing);
  line-height: var(--text-xs-regular-line-height);
  white-space: nowrap;
  font-style: var(--text-xs-regular-font-style);
}

.juntos .flexcontainer-2 {
  height: 194px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background-color: #F9F9FB;
  border-radius: 1rem;
  padding: 2rem 1rem 8rem 1rem;
}

.juntos .div-6 {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 100px;
  background-image: url(./img/frame.png);
  background-size: cover;
  background-position: 50% 50%;
}
@font-face {
  font-family: 'Benzin';
  src: url(../fonts/Benzin-Medium.ttf) format('truetype');
  
}
.text-ahuri {
  font-family: 'Benzin', sans-serif;
  font-size: 45px;
}

@font-face {
  font-family: 'Raleway';
  src: url(../fonts/Raleway-Medium.ttf) format('truetype');
  

}
.text-comentarios {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #7f7f7f;
  line-height: normal;
  letter-spacing: normal;
  
}

