/* ============================================
   QUAD — Métricas
   ============================================ */
:root {
  --color-apoio: #F2572B;
  --color-apoio-hover: #d94a22;
  --color-dark: #171717;
  --color-principal: #FEFBF2;
  --color-apoio2: #ffffff;
  --color-muted: rgba(23, 23, 23, 0.65);
  --color-muted-light: rgba(254, 251, 242, 0.75);

  --font-display: "Arimo", system-ui, sans-serif;
  --font-body: "Lato", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 4px 24px rgba(23, 23, 23, 0.06);
  --shadow-md: 0 12px 48px rgba(23, 23, 23, 0.1);
  --shadow-apoio: 0 8px 32px rgba(242, 87, 43, 0.35);

  --header-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-card-hover: cubic-bezier(0.34, 1.15, 0.64, 1);
}

/* ============================================
   Reset & base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-dark);
  background: var(--color-principal);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--color-apoio);
  color: var(--color-apoio2);
  border-color: var(--color-apoio);
}

.btn--primary:hover {
  background: var(--color-apoio-hover);
  border-color: var(--color-apoio-hover);
  box-shadow: var(--shadow-apoio);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-dark);
  border-color: rgba(23, 23, 23, 0.2);
}

.btn--ghost:hover {
  border-color: var(--color-dark);
  background: rgba(23, 23, 23, 0.04);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(254, 251, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(254, 251, 242, 0.95);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition);
}

.header__nav a:not(.btn):hover {
  color: var(--color-dark);
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__toggle span {
  display: block;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero — Seção 1
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  overflow: hidden;
  background: var(--color-principal);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-apoio);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--color-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__apoio {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-apoio);
  line-height: 1;
}

.hero__stat span {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* ============================================
   Sections — Regras gerais das sectionss
   ============================================ */
.section {
  border-top: 1px solid rgba(238, 106, 18, 0.1);
  padding: 6rem 0;
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-principal);
}

.section--principal {
  background: var(--color-apoio2);
}

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-apoio);
  margin-bottom: 1rem;
}

.section__label--light {
  color: var(--color-apoio);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

.section__title--light {
  color: var(--color-principal);
}

.section__header {
  margin-bottom: 3.5rem;
}

.section__header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section__split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.section__body p {
  color: var(--color-muted-light);
  margin-top: 1.5rem;
}

.quote {
  font-size: 1.125rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-apoio);
  color: var(--color-principal);
  font-style: normal;
}

/* ============================================
   Cards — Seção 3
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow: visible;
}

.card {
  position: relative;
  z-index: 0;
  background: var(--color-apoio2);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transform: scale(1);
  transform-origin: center center;
  transition:
    transform 0.45s var(--ease-card-hover),
    box-shadow 0.45s var(--ease-card-hover),
    border-color 0.45s var(--ease-card-hover),
    z-index 0s 0.45s;
}

.card:hover {
  z-index: 1;
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 87, 43, 0.2);
  transition:
    transform 0.45s var(--ease-card-hover),
    box-shadow 0.45s var(--ease-card-hover),
    border-color 0.45s var(--ease-card-hover),
    z-index 0s;
}

.card--featured {
  background: var(--color-dark);
  color: var(--color-principal);
  border-color: var(--color-dark);
}

.card--featured .card__level {
  background: var(--color-apoio);
  color: var(--color-apoio2);
}

.card--featured .card__text {
  color: var(--color-muted-light);
}

.card__level {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(242, 87, 43, 0.12);
  color: var(--color-apoio);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.card__title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.card__title span {
  font-weight: 400;
  font-size: 0.9em;
  color: var(--color-muted);
}

.card--featured .card__title span {
  color: var(--color-muted-light);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================
   Profile — Seção 4
   ============================================ */
.profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.profile__col {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.profile__col--fit {
  background: var(--color-principal);
  border-color: rgba(242, 87, 43, 0.25);
}

.profile__col--unfit {
  background: rgba(23, 23, 23, 0.03);
}

.profile__heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.profile__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.profile__col--fit .profile__icon {
  color: var(--color-apoio);
}

.profile__col--unfit .profile__icon {
  color: var(--color-muted);
}

.profile__intro {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.profile__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.profile__col--fit .profile__list li {
  color: var(--color-dark);
}

.profile__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-apoio);
}

.profile__col--unfit .profile__list li::before {
  background: rgba(23, 23, 23, 0.25);
}

/* ============================================
   Sobre — Seção 5 (carrossel de equipe)
   ============================================ */
.section--sobre {
  background: var(--color-principal);
  overflow-x: hidden;
  overflow-y: visible;
}

.section__subtitle {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.team-carousel {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: 0 clamp(2.5rem, 6vw, 3rem);
}

.team-carousel__viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 1.25rem 0 2.5rem;
}

.team-carousel__track {
  position: relative;
  min-height: clamp(480px, 62vw, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(300px, 78vw);
  padding: 1.5rem 1.25rem 1.75rem;
  background: var(--color-apoio2);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  /* box-shadow: var(--shadow-sm); */
  cursor: pointer;
  user-select: none;
  transform: translate(calc(-50% + var(--shift, 0px)), -50%) scale(var(--scale, 0.85));
  opacity: var(--opacity, 0.45);
  z-index: var(--z, 1);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card.is-active,
.team-card.is-measuring-active {
  width: min(300px, 78vw);
  min-height: clamp(420px, 58vw, 500px);
  padding: 2rem 1.5rem 2.25rem;
  cursor: default;
  pointer-events: auto;
  border-color: rgba(242, 87, 43, 0.35);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(242, 87, 43, 0.08);
}

.team-card:not(.is-active):not(.is-prev):not(.is-next) {
  pointer-events: none;
}

.team-card__photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(242, 87, 43, 0.2);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
}

.team-card.is-active .team-card__photo,
.team-card.is-measuring-active .team-card__photo {
  width: 188px;
  height: 188px;
  margin-bottom: 1.25rem;
  border-color: var(--color-apoio);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
  transition: font-size 0.5s ease;
}

.team-card.is-active .team-card__name,
.team-card.is-measuring-active .team-card__name {
  font-size: 1.5rem;
}

.team-card__role {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-apoio);
  margin-bottom: 0.875rem;
}

.team-card__bio {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

.team-card.is-active .team-card__bio,
.team-card.is-measuring-active .team-card__bio {
  max-height: 220px;
  opacity: 1;
}

.team-carousel__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-apoio2);
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 50%;
  color: var(--color-dark);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.team-carousel__nav:hover {
  background: var(--color-apoio);
  border-color: var(--color-apoio);
  color: var(--color-apoio2);
}

.team-carousel__nav svg {
  width: 22px;
  height: 22px;
}

.team-carousel__nav--prev {
  left: 0;
}

.team-carousel__nav--next {
  right: 0;
}

.team-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.team-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.team-carousel__dot:hover {
  background: rgba(242, 87, 43, 0.5);
}

.team-carousel__dot.is-active {
  background: var(--color-apoio);
  transform: scale(1.2);
}

/* ============================================
   CTA + Form — Seção 6
   ============================================ */
.section--cta {
  background: var(--color-dark);
  padding: 6rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.cta__text {
  color: var(--color-muted-light);
  margin-top: 1.25rem;
  font-size: 1.0625rem;
}

.form {
  background: var(--color-apoio2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form__field span {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form__field legend {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(23, 23, 23, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-principal);
  color: var(--color-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--color-apoio);
  box-shadow: 0 0 0 3px rgba(242, 87, 43, 0.15);
}

.form__field input.invalid,
.form__field select.invalid,
.form__field textarea.invalid {
  border-color: #c0392b;
}

.form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.form__field--options {
  border: 0;
  padding: 0;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
  margin-top: 0.18rem;
  accent-color: var(--color-apoio);
}

.form__checkbox span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-dark);
}

.form__feedback {
  margin-top: 1rem;
  font-size: 0.9375rem;
  text-align: center;
  min-height: 1.5em;
}

.form__feedback--success {
  color: #1e7e4a;
}

.form__feedback--error {
  color: #c0392b;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-principal);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(254, 251, 242, 0.08);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.footer__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: var(--color-muted-light);
  max-width: 420px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer__nav a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted-light);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--color-apoio);
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(254, 251, 242, 0.45);
  margin-top: 0.5rem;
}

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card.reveal.visible {
  transform: scale(1);
}

.card.reveal.visible:hover {
  z-index: 1;
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 87, 43, 0.2);
  transition:
    transform 0.45s var(--ease-card-hover),
    box-shadow 0.45s var(--ease-card-hover),
    border-color 0.45s var(--ease-card-hover),
    z-index 0s;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .section__split,
  .cta,
  .cards,
  .profile {
    grid-template-columns: 1fr;
  }

  .team-carousel__track {
    min-height: 0;
  }

  .team-card.is-active {
    min-height: 0;
  }

  .hero__apoio {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-principal);
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav a:not(.btn) {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.06);
  }

  .header__nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .team-carousel {
    padding: 0 2.25rem;
  }

  .team-carousel__viewport {
    padding: 1.5rem 0 2.75rem;
  }

  .team-carousel__track {
    min-height: 0;
  }

  .team-card {
    width: min(280px, 85vw);
  }

  .team-card.is-active {
    width: min(280px, 85vw);
    min-height: 0;
    padding: 1.75rem 1.25rem 2rem;
  }

  .team-card.is-active .team-card__photo {
    width: 160px;
    height: 160px;
  }

  .team-card.is-active .team-card__bio {
    max-height: none;
    overflow: visible;
  }

  .team-carousel__nav {
    width: 38px;
    height: 38px;
    top: 50%;
  }
}

@media (max-width: 480px) {
  .team-carousel {
    padding: 0 1.75rem;
  }

  .team-carousel__viewport {
    padding: 1.25rem 0 2.5rem;
  }

  .team-card {
    width: min(260px, 88vw);
  }

  .team-card.is-active {
    width: min(260px, 88vw);
    min-height: 0;
  }

  .team-card.is-active .team-card__photo {
    width: 140px;
    height: 140px;
  }

  .team-card__name {
    font-size: 1rem;
  }

  .team-card.is-active .team-card__name {
    font-size: 1.25rem;
  }
}

@media (min-width: 1680px) {
  .hero__title {
    font-size: clamp(3.25rem, 4vw, 4.75rem);
  }

  .hero__subtitle {
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    max-width: 760px;
  }
}
