/* ==========================================================================
   Business — ATO / DSP (Figma 538:1282)
   Fondo cream; título 60 Avantt bicolor; cuerpo 18/22; complemento 18/600, verde #00cd65
   ========================================================================== */

.section-business-ato.section-wrapper {
  padding-block: 7.5rem;
  padding-inline: 5rem;
  box-sizing: border-box;
}

.section-business-ato__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}

.section-business-ato__title {
  margin: 0;
  max-width: 100%;
  font-family: "Avantt", "Poppins", sans-serif;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-heading, #005146);
  text-wrap: balance;
}

.section-business-ato__title-highlight {
  color: var(--color-brand-green, #00cd65);
}

.section-business-ato__body {
  width: 100%;
  max-width: 58.5rem;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: calc(22 / 18);
  color: var(--color-text, #005146);
  text-align: center;
}

.section-business-ato__body p {
  margin: 0 0 20px;
}

.section-business-ato__body p:last-child {
  margin-bottom: 0;
}

.section-business-ato__body a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
  color: inherit;
}

.section-business-ato__text-highlight {
  max-width: 39.1875rem;
  margin: 0;
  color: var(--color-brand-green, #00cd65);
  text-align: center;
}

.section-wrapper--green .section-business-ato__text-highlight,
.section-wrapper--green .section-business-ato__title-highlight {
  color: #005146;
}

@media (max-width: 1023px) {
  .section-business-ato.section-wrapper {
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
    padding-block: clamp(3rem, 8vw, 5rem);
  }

  .section-business-ato__title {
    font-size: 28px;
  }

  .section-business-ato__body {
    max-width: 100%;
    font-size: 14px;
    line-height: 18px;
  }

  .section-business-ato__body p {
    margin-bottom: 16px;
  }

  .section-business-ato__inner {
    gap: 24px;
  }
}