:root {
  color-scheme: dark;
  --lc-purple: #420465;
  --lc-purple-soft: #8d0de3;
  --lc-green: #c9e2bf;
  --lc-white: #ffffff;
  --lc-muted: rgba(255, 255, 255, 0.84);
  --lc-card: rgba(66, 4, 101, 0.84);
  --lc-border: rgba(255, 255, 255, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nu Sans", sans-serif;
  font-size: clamp(0.95rem, 0.45vw + 0.85rem, 1.1rem);
  background: var(--lc-purple);
  color: var(--lc-white);
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--lc-green);
}

.page {
  min-height: 100vh;
}

.site-container {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(66, 4, 101, 0.58) 0%, rgba(66, 4, 101, 0.42) 50%, rgba(66, 4, 101, 0.55) 100%),
    linear-gradient(90deg, rgba(141, 13, 227, 0.88) 0%, rgba(141, 13, 227, 0.62) 50%, rgba(141, 13, 227, 0.78) 100%),
    radial-gradient(circle at right, rgba(201, 226, 191, 0.22), transparent 34%),
    url("https://static.loungecentenario.com.br/files/img/foto-bg.jpg") center / cover no-repeat;
}

.hero__content {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 20px 0 32px;
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  /*margin-bottom: 32px;*/
}

.hero__logo {
  width: auto;
  max-width: calc(50% - 8px);
  max-height: 56px;
  object-fit: contain;
}

.hero__logo--centenario {
  aspect-ratio: 306 / 192;
  max-height: 90px;
  max-width: min(70vw, 293px);
}

.hero__copy {
  text-align: center;
}

.hero__main {
  margin-top: 8px;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.15rem, 11vw, 3.35rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero__title-line,
.hero__title-gradient {
  display: block;
}

.hero__title-line--desktop,
.hero__title-gradient--desktop {
  display: none;
}

.hero__title-gradient,
.section-title__gradient {
  color: var(--lc-green);
  -webkit-text-fill-color: var(--lc-green);
}

.hero__subtitle {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 0.8vw + 0.82rem, 1.35rem);
  line-height: 1.62;
  color: var(--lc-muted);
}

.hero__form .form-card {
  margin-inline: auto;
}

.form-card {
  width: min(410px, 100%);
  border: 1px solid var(--lc-border);
  border-radius: 18px;
  background: var(--lc-card);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.form-card__title {
  margin: 0;
  color: var(--lc-green);
  text-align: center;
  font-size: clamp(1.45rem, 1.2vw + 1.1rem, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.lead-form__input {
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--lc-white);
  font-size: 0.92rem;
}

.lead-form__input::placeholder {
  color: rgba(235, 238, 245, 0.72);
}

.lead-form__input:focus {
  border-color: var(--lc-purple-soft);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lc-white);
  box-shadow: none;
}

.lead-form__button {
  min-height: auto;
  height: 48px;
  border: 1px solid var(--lc-green);
  border-radius: 12px;
  background: var(--lc-green);
  color: var(--lc-purple);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.lead-form__button:hover {
  border-color: var(--lc-green);
  background: var(--lc-green);
  color: var(--lc-purple);
  filter: brightness(1.08);
}

.btn--primary {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(141, 13, 227, 0.6);
  border-radius: 12px;
  background: #8d0de3;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: 0.2s ease;
}

.btn--primary:hover {
  border-color: #8d0de3;
  background: #8d0de3;
  color: #fff;
  filter: brightness(1.08);
}

.lead-form__button[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

.lead-form__seats,
.lead-form__feedback {
  min-height: 18px;
  font-size: 0.85rem;
}

.lead-form__seats {
  color: rgba(220, 230, 255, 0.82);
}

.lead-form__seats.is-empty {
  color: rgba(220, 230, 255, 0.6);
}

.lead-form__feedback.is-success {
  color: var(--lc-green);
}

.lead-form__feedback.is-error {
  color: #ffb2b2;
}

.benefit-card,
.testimonial-card {
  border: 1px solid var(--lc-border);
  background: linear-gradient(180deg, rgba(84, 12, 130, 0.88), rgba(66, 4, 101, 0.88));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.benefit-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-radius: 20px;
  text-align: center;
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(141, 13, 227, 0.4);
  border-radius: 999px;
  background: rgba(141, 13, 227, 0.1);
  color: var(--lc-green);
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  margin: 0;
  font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.12rem);
  font-weight: 500;
  line-height: 1.45;
}

.gallery,
.testimonials,
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery {
  padding: 64px 0;
  background: radial-gradient(circle at top, rgba(141, 13, 227, 0.16), transparent 52%);
}

.section-title {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.88rem, 6.58vw, 3.30rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.section-title__light,
.section-title__gradient {
  display: block;
}

.section-title__gradient {
  margin-top: 10px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 386 / 258;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 7, 15, 0.9), rgba(2, 7, 15, 0.2), transparent);
}

.gallery-card__content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 20px;
}

.gallery-card__content p {
  margin: 0;
  color: var(--lc-green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-card__content h3 {
  margin: 10px 0 0;
  font-size: clamp(1.15rem, 0.8vw + 0.95rem, 1.35rem);
  font-weight: 600;
}

.testimonials {
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(141, 13, 227, 0.96) 0%, rgba(93, 10, 150, 0.98) 55%, rgba(66, 4, 101, 1) 100%),
    radial-gradient(circle at top right, rgba(201, 226, 191, 0.18), transparent 40%);
}

.testimonials__title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
}

.testimonials__list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.testimonial-card {
  border-radius: 18px;
  padding: 16px;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.footer {
  padding: 40px 0 88px;
  background: var(--lc-purple);
}

.footer__info {
  display: grid;
  gap: 12px;
}

.footer__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--lc-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--lc-green);
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logos img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.footer__logos .footer__logo--allianz {
  height: 64px;
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 998;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.8);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: min(1200px, 100%);
  max-height: calc(100vh - 24px);
  max-height: calc(100svh - 24px);
  overflow: hidden;
  background: #420465;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal__header {
  padding: 16px 16px 8px;
  display: grid;
  gap: 10px;
}

.modal__header h2 {
  margin: 0;
  padding-block: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.modal__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.modal__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  padding: 0 16px 12px;
}

.modal__label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal__select {
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(141, 13, 227, 0.6);
  background: rgba(141, 13, 227, 0.18);
  color: #fff;
  padding: 0 12px;
  font-size: 0.95rem;
}

.modal__select:focus {
  outline: none;
  border-color: var(--lc-green);
  background: rgba(141, 13, 227, 0.28);
}

.modal__select option {
  color: #420465;
  background: #ffffff;
}

.modal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.modal__legend-item-available,
.modal__legend-item-selected,
.modal__legend-item-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.modal__legend-seat-available,
.modal__legend-seat-selected,
.modal__legend-seat-unavailable {
  width: 26px;
  height: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  padding: 0;
}

.modal__legend-seat-available,
.seat--available {
  border-color: rgba(201, 226, 191, 0.95);
  background: rgba(201, 226, 191, 0.28);
}

.modal__legend-seat-selected,
.seat--selected {
  border-color: var(--lc-purple-soft);
  background: rgba(141, 13, 227, 0.62);
}

.modal__legend-seat-unavailable,
.seat--unavailable {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.modal__pinch-hint {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  text-align: center;
}

.modal__pinch-hint img {
  width: 24px;
  height: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.modal__content {
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: stretch;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.modal__footer {
  padding: 10px 16px 16px;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

#seat-modal .modal__footer {
  display: flex;
  justify-content: flex-end;
}

#seat-modal .modal__feedback {
  margin-right: auto;
}

#seat-modal .modal__confirm {
  width: auto;
}

.modal__feedback {
  min-height: 18px;
  color: #ffb2b2;
  font-size: 0.9rem;
}

.modal--alert {
  z-index: 1001;
}

.modal--alert .modal__overlay {
  background: rgba(5, 10, 20, 0.58);
}

.modal__dialog--alert {
  width: min(420px, 100%);
  max-height: none;
  grid-template-rows: auto;
}

.modal__alert-content {
  display: grid;
  gap: 16px;
  padding: 34px 24px 24px;
  text-align: center;
}

.modal__alert-content h2 {
  margin: 0;
  color: var(--lc-green);
  font-size: 1.35rem;
  font-weight: 800;
}

.modal__alert-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.modal__alert-content .btn {
  justify-self: center;
  min-width: 150px;
}

.modal__dialog--success {
  width: min(560px, 100%);
  grid-template-rows: auto auto;
}

.modal__header--success {
  padding: 36px 28px 18px;
  text-align: center;
}

.modal__success-logo {
  width: min(210px, 70%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.modal__header--success h2 {
  color: var(--lc-green);
  font-size: 1.8rem;
  line-height: 1.2;
}

.modal__header--success p {
  max-width: 440px;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.65;
}

.modal__footer--success {
  justify-content: center;
  padding-bottom: 28px;
}

.modal__footer--success .btn {
  min-width: 160px;
}

.seat-grid {
  overflow: hidden;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(4, 11, 24, 0.55);
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
}

.seat-grid__viewport {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.seat-grid__loading {
  min-width: 240px;
  padding: 18px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.seat-map__inner {
  display: inline-grid;
  gap: 6px;
  width: max-content;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

.seat-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.seat {
  width: 60px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  padding: 0;
  font-family: inherit;
  cursor: default;
}

.seat--available {
  background: rgba(201, 226, 191, 0.3);
  border-color: rgba(201, 226, 191, 0.8);
  color: #f8fff5;
  cursor: pointer;
}

.seat--selected {
  background: rgba(141, 13, 227, 0.5);
  border-color: rgba(141, 13, 227, 0.9);
  color: #ffffff;
}

.seat--unavailable {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.4);
}

.seat--placeholder {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: transparent;
}

.seat-zoom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(4, 11, 24, 0.55);
}

.seat-zoom__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.seat-zoom__step {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.seat-zoom__step:hover {
  background: rgba(255, 255, 255, 0.15);
}

.seat-zoom__track {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seat-zoom__range {
  width: 214px;
  transform: rotate(-90deg);
  accent-color: var(--lc-green);
}

.seat-zoom__value {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.86);
  min-width: 44px;
  text-align: center;
}

.seat-grid.is-pannable .seat-grid__viewport {
  cursor: grab;
}

.seat-grid.is-dragging-map .seat-grid__viewport {
  cursor: grabbing;
}

@media (max-width: 767px) {
  .modal {
    align-items: start;
  }

  .modal__dialog {
    /*grid-template-rows: auto auto minmax(280px, 1fr) auto;*/
  }

  .modal__close {
    top: 12px;
    right: 12px;
  }

  .modal__header {
    gap: 6px;
    padding: 14px 56px 8px 16px;
  }

  .modal__header h2 {
    min-height: 36px;
    padding-block: 0;
    display: flex;
    align-items: center;
    font-size: 1.16rem;
    line-height: 1.18;
  }

  .modal__header p {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .modal__controls {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding-inline: 12px;
  }

  .modal__label {
    width: 100%;
    justify-items: center;
  }

  .modal__select {
    width: min(210px, 100%);
    text-align: center;
  }

  .modal__legend {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    font-size: 0.68rem;
    line-height: 1;
    white-space: nowrap;
  }

  .modal__legend-item-available,
  .modal__legend-item-selected,
  .modal__legend-item-unavailable {
    gap: 4px;
  }

  .modal__legend-seat-available,
  .modal__legend-seat-selected,
  .modal__legend-seat-unavailable {
    width: 18px;
    height: 18px;
    border-radius: 6px;
  }

  .modal__pinch-hint {
    display: flex;
    justify-content: end;
  }

  .modal__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal__footer {
    align-items: stretch;
    /*flex-direction: column;*/
    gap: 10px;
  }

  .modal__confirm {
    width: 100%;
  }

  .modal__dialog--success {
    width: min(100% - 32px, 420px);
    grid-template-rows: auto auto;
    margin-inline: auto;
  }

  .modal--success {
    align-items: center;
    place-items: center;
    padding: 16px;
  }

  .modal--alert {
    align-items: center;
    place-items: center;
    padding: 16px;
  }

  .modal__dialog--alert {
    width: min(100% - 32px, 360px);
  }

  .modal__alert-content {
    padding: 32px 18px 22px;
  }

  .modal__header--success {
    padding: 32px 18px 14px;
  }

  .modal__success-logo {
    width: min(180px, 76%);
    margin-bottom: 16px;
  }

  .modal__header--success h2 {
    display: flex;
    font-size: 1.45rem;
    justify-content: center;
  }

  .modal__header--success p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .modal__footer--success {
    display: flex;
    align-items: center;
    padding: 8px 18px 24px;
  }

  .modal__footer--success .btn {
    width: min(220px, 100%);
  }

  .seat-zoom {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero__title-line--mobile {
    display: none;
  }

  .hero__title-line--desktop,
  .hero__title-gradient--desktop {
    display: block;
  }

  .hero__logo {
    max-width: none;
    max-height: none;
    height: 80px;
  }

  .hero__logo--centenario {
    height: 101px;
    max-width: 286px;
  }

  .form-card {
    padding: 24px;
  }

  .gallery-card {
    min-height: 256px;
    border-radius: 28px;
  }

  .gallery-card img {
    min-height: 256px;
  }

  .gallery .col-xl-4 {
    display: flex;
    justify-content: center;
  }

  .gallery-card {
    width: 100%;
    max-width: 386px;
    height: 258px;
    min-height: 258px;
  }

  .gallery-card img {
    height: 258px;
    min-height: 258px;
  }

  .footer {
    padding: 48px 0;
  }

  .whatsapp-float {
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
  }

  .modal__dialog {
    max-height: 90vh;
    border-radius: 24px;
  }

  .modal__content {
    grid-template-columns: minmax(0, 1fr) 72px;
    min-height: 420px;
  }

  .modal__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .modal__footer.modal__footer--success {
    justify-content: center;
  }

  .modal__footer--success .btn {
    margin-inline: auto;
  }

  .modal__confirm {
    width: auto;
  }

}

@media (min-width: 992px) {
  .hero__content {
    padding: 40px 0;
  }

  .hero__main {
    display: flex;
    flex-wrap: nowrap;
    /*margin-top: 48px;*/
    align-items: flex-start;
  }

  .hero__copy {
    flex: 1 1 0;
    text-align: left;
  }

  .hero__subtitle {
    margin-left: 0;
    line-height: 1.9;
  }

  .hero__form {
    display: flex;
    flex: 0 0 min(410px, 100%);
    align-items: flex-start;
    justify-content: flex-end !important;
  }

  .hero__form .form-card {
    margin-right: 0;
    margin-left: auto;
  }

  .hero__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 56px;
  }

  .hero__header .hero__logo:first-child,
  .hero__header .hero__logo:last-child {
    justify-self: start;
  }

  .hero__logo {
    height: 96px;
  }

  .hero__logo--centenario {
    height: 120px;
    max-width: 338px;
  }

  .testimonials__title {
    text-align: left;
  }

  .testimonials__form {
    position: sticky;
    top: 32px;
    align-self: start;
  }

  .modal__dialog {
    width: min(1400px, 96vw);
    max-height: 96vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
  }
}
