/* Nossa História */

.history-section {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background-color: var(--color-wine-medium);
}

.history-section__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 58%) minmax(315px, 1fr);
  align-items: center;
  width: min(100%, 1254px);
  min-height: clamp(760px, 64vw, 860px);
  margin: 0 auto;
  padding: clamp(42px, 5.4vw, 74px) clamp(24px, 6vw, 80px);
  gap: clamp(34px, 5vw, 72px);
}

.history-section__photos {
  display: block;
  justify-self: center;
  width: min(112%, 760px);
  max-width: none;
  height: auto;
  margin-block: clamp(-44px, -3vw, -24px);
  user-select: none;
  transform: translate3d(0, var(--history-parallax-y, 0px), 0) scale(var(--history-parallax-scale, 1.055));
  transform-origin: center center;
  filter: drop-shadow(0 28px 36px rgba(86, 3, 3, 0.18));
  will-change: transform;
  transition: transform 80ms linear, filter 220ms ease;
}

.history-section__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 410px);
}

.history-section__title {
  margin: 0 0 28px;
  font-size: 34px;
  text-transform: uppercase;
  color: var(--color-blush);
  font-weight: 400;
  font-family: "Tenor Sans", serif;
  line-height: 1.28;
  letter-spacing: 0;
}

.history-section__text {
  width: 315px;
  height: 370px;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.18;
}

.history-section__text p {
  margin: 0;
  font: inherit;
  color: inherit;
}

.history-section__text p + p {
  margin-top: 22px;
}

.history-section__article-text {
  width: min(100%, 315px);
  margin: 26px 0 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.history-section__article-text a {
  color: inherit;
  font: inherit;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.history-section__article-text a:hover,
.history-section__article-text a:focus-visible {
  color: var(--color-blush-soft);
  text-decoration: none;
}

.history-section__article-text a:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .history-section__stage {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    padding-block: 46px 56px;
    gap: 32px;
  }

  .history-section__photos {
    width: min(108%, 620px);
    margin-block: -28px;
  }

  .history-section__copy {
    align-items: center;
    width: min(100%, 520px);
    text-align: left;
  }

  .history-section__title {
    width: min(100%, 315px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .history-section__photos {
    transform: none !important;
    filter: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 760px) {
  .history-section__photos {
    width: min(100%, 560px);
    margin-block: 0;
    transform: none !important;
    filter: none;
    will-change: auto;
  }
}

@media (max-width: 520px) {
  .history-section__stage {
    padding: 38px 18px 46px;
    gap: 24px;
  }

  .history-section__copy,
  .history-section__title,
  .history-section__text,
  .history-section__article-text {
    width: min(100%, 315px);
  }

  .history-section__title {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .history-section__text {
    height: auto;
    min-height: 370px;
  }
}
