:root {
  --about-green: #45d969;
  --about-black: #000;
  --about-ink: #262626;
  --about-copy: #404040;
  --about-muted: #889b95;
  --about-fog: #dde6e5;
  --about-paper: #f5faf9;
  --about-dark-copy: #b6c2c1;
  --about-deep-green: #5c7366;
}

.about-page {
  background: var(--about-black);
}

.about-page main {
  overflow: clip;
}

.about-container {
  width: min(1204px, calc(100% - 160px));
  margin-inline: auto;
}

.about-hero {
  position: relative;
  height: 100vh;
  min-height: 758px;
  display: flex;
  align-items: flex-end;
  color: var(--about-paper);
  background: #101512 url("assets/sobre/hero-desktop.jpg") center 45% / cover no-repeat;
}

.about-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 54%, rgba(0, 0, 0, 0.08));
}

.about-hero__content {
  position: relative;
  z-index: 1;
  width: calc(100% - 56px);
  max-width: none;
  padding-bottom: 28px;
}

.about-hero__label,
.about-section-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245, 250, 249, 0.2);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  color: var(--about-green);
}

.about-hero__label img {
  width: 128px;
  height: 20px;
  object-fit: contain;
  transform: scaleX(-1);
}

.about-hero h1 {
  max-width: 1170px;
  margin: 24px 0;
  font-size: clamp(52px, 4.72vw, 68px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.about-hero__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 250, 249, 0.2);
}

.about-hero__footer > p {
  max-width: 859px;
  margin: 0;
  color: rgba(245, 250, 249, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.about-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--about-paper);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.about-arrow-link img {
  width: 20px;
  height: 20px;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-arrow-link:hover img,
.about-arrow-link:focus-visible img {
  transform: translate(5px, 5px);
}

.about-manifesto {
  min-height: 519px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background: var(--about-paper);
  color: var(--about-black);
}

.about-manifesto__grid {
  display: grid;
  grid-template-columns: 344px repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.about-manifesto h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
}

.about-value {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 258px;
  padding: 16px;
}

.about-value__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--about-fog);
  color: var(--about-muted);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.about-value__head i {
  width: 13px;
  height: 18px;
  flex: 0 0 13px;
  background: url("assets/figma/icon-pce.svg") center / contain no-repeat;
}

.about-value h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.about-value p {
  margin: -8px 0 0;
  color: var(--about-copy);
  font-size: 14px;
  line-height: 1.5;
}

.about-principle {
  height: 640px;
  display: flex;
  align-items: center;
  padding: 140px 0 180px;
  background: #fff url("assets/figma/BG-Numeros_desktop.png") center / cover no-repeat;
}

.about-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-tag::before,
.about-tag::after {
  content: "";
  width: 4px;
  height: 26px;
  background: center / contain no-repeat;
}

.about-tag::before {
  background-image: url("assets/figma/Left-tag.svg");
}

.about-tag::after {
  background-image: url("assets/figma/Right-tag.svg");
}

.about-principle .about-container {
  text-align: center;
}

.about-principle h2 {
  margin: 30px 0 0;
  font-size: clamp(54px, 5.07vw, 73px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.035em;
  background:
    radial-gradient(circle at 74% 0%, #f5faf9 0, rgba(245, 250, 249, 0) 43%),
    linear-gradient(90deg, #b6c2c1, #b6c2c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-history {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: flex-end;
  color: var(--about-paper);
  background: #111;
}

.about-history__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.22) 32%, #000 100%),
    url("assets/sobre/history-ledger.jpg") center 49% / cover no-repeat;
}

.about-history__content {
  position: relative;
  z-index: 1;
  padding-bottom: 78px;
}

.about-section-rule {
  color: var(--about-paper);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-history h2 {
  margin: 40px 0 24px;
  font-size: 36px;
  line-height: 1.4;
}

.about-history__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-history__columns p {
  margin: 0;
  color: rgba(245, 250, 249, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.about-timeline {
  padding: 120px;
  background: var(--about-black);
  color: var(--about-paper);
}

.about-timeline__grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 80px;
  align-items: stretch;
}

.about-timeline__photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.about-timeline__photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-timeline h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.4;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 36px;
}

.timeline-list__dot {
  position: relative;
  width: 20px;
  height: 100%;
  align-self: stretch;
}

.timeline-list__dot::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: var(--about-green);
}

.timeline-list__dot::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 10px;
  width: 1px;
  background: linear-gradient(180deg, #42564b 0%, #262626 100%);
}

.timeline-list small {
  display: block;
  margin-bottom: 8px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}

.timeline-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.4;
}

.timeline-list p {
  margin: 0;
  color: var(--about-dark-copy);
  font-size: 14px;
  line-height: 1.5;
}

.about-generations {
  min-height: 948px;
  padding: 80px 0;
  background: #fff;
  color: var(--about-black);
}

.about-centered-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.about-centered-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.4;
}

.about-centered-heading > p:last-child {
  width: min(802px, 100%);
  margin: 0;
  color: var(--about-copy);
  font-size: 16px;
  line-height: 1.5;
}

.generation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  height: 540px;
  margin-top: 60px;
}

.generation-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--about-fog);
}

.generation-card > img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  object-fit: cover;
}

.generation-card:nth-child(1) > img {
  object-position: 39% center;
}

.generation-card:nth-child(2) > img {
  object-position: center 45%;
}

.generation-card:nth-child(3) > img {
  object-position: center 42%;
}

.generation-card__icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: -28px 20px -26px;
  flex: 0 0 54px;
}

.generation-card__icon-tile,
.generation-card__icon-glyph {
  position: absolute;
  display: block;
}

.generation-card__icon-tile {
  inset: 0;
  width: 54px;
  height: 54px;
}

.generation-card__icon-glyph {
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.generation-card__icon--evolution .generation-card__icon-glyph {
  transform: translate(-50%, -50%) scaleY(-1);
}

.generation-card__copy {
  min-height: 160px;
  padding: 48px 20px 20px;
}

.generation-card__copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.4;
}

.generation-card__copy p {
  margin: 0;
  color: var(--about-copy);
  font-size: 14px;
  line-height: 1.5;
}

.about-credentials {
  position: relative;
  min-height: 793px;
  overflow: hidden;
  padding: 120px 0;
  background: #fff url("assets/figma/BG-Numeros_desktop.png") center / cover no-repeat;
  color: var(--about-black);
}

.about-credentials__dots {
  display: none;
}

.about-credentials__heading {
  position: relative;
  z-index: 1;
}

.about-number-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
}

.about-number-card {
  width: 204px;
  height: 249px;
  display: flex;
  flex-direction: column;
  background: var(--about-fog);
  box-shadow: 0 12px 22px rgba(38, 38, 38, 0.12);
}

.about-number-card--low {
  margin-top: 60px;
}

.about-number-card > div {
  flex: 1 1 auto;
  padding: 20px;
}

.about-number-card strong {
  display: block;
  color: var(--about-ink);
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.about-number-card__word {
  font-size: 40px !important;
}

.about-number-card p {
  margin: 12px 0 0;
  color: var(--about-copy);
  font-size: 12px;
  line-height: 1.5;
}

.about-number-card footer,
.about-ecosystem__cards footer {
  position: relative;
  height: 56px;
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--about-ink);
}

.about-number-card footer::after,
.about-ecosystem__cards footer::after {
  content: "";
  position: absolute;
  inset: 8px 8px 8px 56px;
  background: url("assets/figma/Pattern-rodape-card-2.svg") right center / auto 100% no-repeat;
}

.about-number-card footer .brand-icon,
.about-number-card footer img,
.about-ecosystem__cards footer .brand-icon,
.about-ecosystem__cards footer img {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  object-fit: contain;
  color: var(--about-green);
}

.about-ecosystem {
  min-height: 710px;
  display: flex;
  align-items: center;
  padding: 100px;
  background: var(--about-paper);
}

.about-ecosystem__inner {
  width: min(1204px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 669px 1fr;
  gap: 60px;
  align-items: center;
}

.about-ecosystem__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-ecosystem__cards article {
  min-width: 0;
  height: 249px;
  display: flex;
  flex-direction: column;
  background: var(--about-fog);
  box-shadow: 0 12px 22px rgba(38, 38, 38, 0.09);
}

.about-ecosystem__cards article > div {
  flex: 1 1 auto;
  padding: 20px;
}

.about-ecosystem__cards strong {
  display: block;
  color: var(--about-ink);
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.about-ecosystem__cards p {
  margin: 12px 0 0;
  color: var(--about-copy);
  font-size: 14px;
  line-height: 1.5;
}

.about-ecosystem__copy {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.about-ecosystem__copy h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: 36px;
  line-height: 1.4;
}

.about-ecosystem__copy p {
  margin: 20px 0 0;
  color: var(--about-copy);
  font-size: 14px;
  line-height: 1.5;
}

.about-cta {
  height: 807px;
  padding: 120px 80px;
  background: linear-gradient(90deg, var(--about-fog) 0 71.875%, var(--about-deep-green) 71.875% 100%);
}

.about-cta__inner {
  width: min(1204px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 530px;
  gap: 120px;
  align-items: center;
}

.about-cta__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 58px;
}

.about-cta__copy > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-cta__copy h2 {
  margin: 0;
  color: var(--about-black);
  font-size: 36px;
  line-height: 1.4;
}

.about-cta__copy > div p {
  margin: 0;
  color: var(--about-copy);
  font-size: 14px;
  line-height: 1.5;
}

.about-cta__copy .button {
  width: fit-content;
}

.about-cta__art {
  position: relative;
  width: 530px;
  height: 568px;
}

.about-cta__art img {
  position: absolute;
  display: block;
}

.about-cta__dots {
  width: 490px;
  height: 490px;
  left: 40px;
  top: 77px;
}

.about-cta__back {
  width: 490px;
  height: 490px;
  left: 0;
  top: 37px;
}

.about-cta__front {
  width: 490px;
  height: 527px;
  left: 0;
  top: 0;
}

.about-cta__corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  background: #889b95;
}

.about-cta__corner::before {
  content: "";
  position: absolute;
  inset: 13px;
  background: url("assets/official/Iconografia/M/Seta-Down-right-light.svg") center / contain no-repeat;
  transform: rotate(180deg);
}

@media (max-width: 1100px) and (min-width: 768px) {
  .about-container {
    width: min(960px, calc(100% - 80px));
  }

  .about-timeline {
    padding-inline: 60px;
  }

  .about-timeline__grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
    gap: 48px;
  }

  .about-ecosystem {
    padding-inline: 60px;
  }

  .about-ecosystem__inner {
    grid-template-columns: 56% 1fr;
    gap: 44px;
  }

  .about-cta__inner {
    gap: 60px;
    grid-template-columns: 1fr 440px;
  }

  .about-cta__art {
    width: 440px;
    transform: scale(0.83);
    transform-origin: right center;
  }
}

@media (max-width: 900px) and (min-width: 768px) {
  .about-cta {
    padding-inline: 40px;
  }

  .about-cta__inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
  }

  .about-cta__art {
    width: 360px;
    transform: scale(0.68);
  }

  .about-page .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 383px);
    gap: 24px;
    padding-inline: 24px;
  }
}

@media (max-width: 767px) {
  .about-container {
    width: calc(100% - 32px);
  }

  .about-hero {
    height: 100vh;
    min-height: 780px;
    background-image: url("assets/sobre/hero-mobile.png");
    background-position: 51% center;
  }

  .about-hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.16) 32%, #000 100%);
  }

  .about-hero__content {
    padding-bottom: 16px;
  }

  .about-hero__label {
    padding-bottom: 16px;
    font-size: 16px;
  }

  .about-hero__label img {
    width: 60px;
    height: 16px;
    content: url("assets/sobre/hero-pattern-mobile.svg");
  }

  .about-hero h1 {
    margin: 16px 0;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .about-hero__footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding-top: 16px;
  }

  .about-hero__footer > p {
    font-size: 12px;
  }

  .about-arrow-link {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
  }

  .about-arrow-link img {
    width: 18px;
    height: 18px;
  }

  .about-manifesto {
    height: 709px;
    padding: 48px 0;
  }

  .about-manifesto__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about-manifesto h2 {
    font-size: 24px;
  }

  .about-value {
    min-height: auto;
    gap: 20px;
    padding: 0;
  }

  .about-value h3 {
    font-size: 20px;
  }

  .about-value p {
    margin-top: -8px;
  }

  .about-principle {
    height: 542px;
    min-height: 0;
    padding: 120px 0 90px;
    align-items: flex-start;
    background-position: center bottom;
    background-size: auto 100%;
  }

  .about-principle .about-container {
    text-align: left;
  }

  .about-tag {
    min-height: 22px;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
  }

  .about-tag::before,
  .about-tag::after {
    width: 4px;
    height: 22px;
  }

  .about-principle h2 {
    margin-top: 16px;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.03em;
  }

  .about-history {
    height: 800px;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    padding: 0;
    background: #000;
  }

  .about-history__image {
    position: absolute;
    inset: 0;
    height: auto;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, #000 100%),
      url("assets/sobre/history-mobile-figma.png") center / auto 100% no-repeat;
  }

  .about-history__content {
    width: 100%;
    padding: 40px 16px;
  }

  .about-section-rule {
    padding-bottom: 24px;
    font-size: 12px;
  }

  .about-history h2 {
    margin: 40px 0 20px;
    font-size: 24px;
    line-height: 1.4;
  }

  .about-history__columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about-history__columns p {
    font-size: 14px;
  }

  .about-timeline {
    height: auto;
    min-height: 1328px;
    padding: 40px 16px;
  }

  .about-timeline__grid {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-timeline__photo {
    min-height: 0;
    height: 450px;
  }

  .about-timeline__photo img {
    object-position: center 42%;
  }

  .about-timeline__content {
    gap: 32px;
  }

  .about-timeline h2 {
    font-size: 24px;
  }

  .timeline-list {
    gap: 24px;
  }

  .timeline-list li {
    grid-template-columns: 20px 1fr;
    gap: 20px;
  }

  .timeline-list small {
    font-size: 12px;
  }

  .timeline-list h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .timeline-list p {
    font-size: 12px;
  }

  .about-generations {
    height: 1854px;
    min-height: 1854px;
    padding: 40px 0;
  }

  .about-centered-heading {
    gap: 16px;
  }

  .about-centered-heading h2 {
    font-size: 24px;
  }

  .about-centered-heading > p:last-child {
    font-size: 12px;
  }

  .generation-grid {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .generation-card > img {
    flex: none;
    height: 338px;
  }

  .generation-card__copy {
    min-height: 160px;
  }

  .about-credentials {
    height: 996px;
    min-height: 996px;
    padding: 60px 0;
    background-position: center bottom;
    background-size: auto 100%;
  }

  .about-credentials__heading {
    align-items: flex-start;
    text-align: left;
  }

  .about-credentials__heading h2 {
    max-width: 330px;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.03em;
    background:
      radial-gradient(circle at 74% 0%, #f5faf9 0, rgba(245, 250, 249, 0) 45%),
      linear-gradient(90deg, #b6c2c1, #b6c2c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .about-credentials__heading > p:last-child {
    display: none;
  }

  .about-number-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
  }

  .about-number-card,
  .about-number-card--low {
    width: auto;
    height: 200px;
    margin-top: 0;
  }

  .about-number-card:last-child {
    grid-column: 1 / -1;
  }

  .about-number-card > div {
    padding: 12px;
  }

  .about-number-card strong {
    font-size: 34px;
  }

  .about-number-card__word {
    font-size: 34px !important;
  }

  .about-number-card p {
    margin-top: 8px;
    font-size: 12px;
  }

  .about-number-card footer,
  .about-ecosystem__cards footer {
    height: 48px;
    flex-basis: 48px;
  }

  .about-number-card footer .brand-icon,
  .about-number-card footer img,
  .about-ecosystem__cards footer .brand-icon,
  .about-ecosystem__cards footer img {
    width: 32px;
    height: 32px;
  }

  .about-number-card footer::after,
  .about-ecosystem__cards footer::after {
    inset: 7px 6px 7px 48px;
  }

  .about-ecosystem {
    height: 861px;
    min-height: 861px;
    padding: 50px 16px;
  }

  .about-ecosystem__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .about-ecosystem__copy {
    order: -1;
    gap: 48px;
  }

  .about-ecosystem__copy h2 {
    font-size: 24px;
  }

  .about-ecosystem__cards {
    width: 100%;
    gap: 12px;
  }

  .about-ecosystem__cards article {
    height: 188px;
  }

  .about-ecosystem__cards article > div {
    padding: 16px;
  }

  .about-ecosystem__cards strong {
    font-size: 28px;
  }

  .about-ecosystem__cards p {
    margin-top: 8px;
    font-size: 12px;
  }

  .about-cta {
    height: 867px;
    min-height: 867px;
    padding: 60px 16px;
    background:
      radial-gradient(circle at 100% 0%, #fff 0, rgba(255, 255, 255, 0) 24%),
      linear-gradient(180deg, var(--about-fog) 0 71.7%, var(--about-deep-green) 71.7% 100%);
  }

  .about-cta__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about-cta__copy {
    width: 100%;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .about-cta__copy > div {
    gap: 20px;
  }

  .about-cta__copy h2 {
    font-size: 24px;
  }

  .about-cta__copy .button {
    width: fit-content;
  }

  .about-cta__art {
    width: 344px;
    height: 368px;
  }

  .about-cta__dots {
    content: url("assets/sobre/cta-dots-mobile.svg");
    width: 318px;
    height: 318px;
    left: 26px;
    top: 50px;
  }

  .about-cta__back {
    content: url("assets/sobre/cta-back-mobile.png");
    width: 318px;
    height: 318px;
    left: 0;
    top: 24px;
  }

  .about-cta__front {
    content: url("assets/sobre/cta-front-mobile.png");
    width: 318px;
    height: 342px;
  }

  .about-cta__corner {
    width: 34px;
    height: 34px;
  }

  .about-cta__corner::before {
    inset: 8px;
  }

  .site-footer .footer-main {
    gap: 22px;
  }

  .site-footer .footer-links {
    gap: 0;
  }
}
