.contact-page-body {
  background: #fff;
}

.contact-main {
  background: #fff;
}

.contact-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-flashes {
  padding-top: 20px;
}

.contact-flashes__inner {
  display: grid;
  gap: 12px;
}

.contact-flash,
.contact-form-errors {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-flash {
  border: 1px solid rgba(23, 26, 31, 0.08);
  background: #fff8f3;
  color: var(--landing-ink);
}

.contact-flash--success,
.contact-flash--info {
  border-color: rgba(255, 83, 0, 0.2);
  background: rgba(255, 83, 0, 0.08);
}

.contact-flash--fail,
.contact-flash--danger,
.contact-flash--warning,
.contact-form-errors {
  border-color: rgba(194, 52, 52, 0.18);
  background: rgba(194, 52, 52, 0.08);
}

.contact-hero {
  min-height: 530px;
  color: #fff;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contact-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.60) 42%, rgba(8, 10, 14, 0.14) 100%);
}

.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

@media (max-width: 1366px) and (min-width: 721px) {
  .contact-hero__bg img {
    object-position: right center;
  }
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  min-height: 530px;
  display: flex;
  align-items: center;
}

.contact-hero__copy {
  max-width: 560px;
  padding: 56px 0;
}

.contact-hero__copy h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  line-height: 1.06;
}

.contact-hero__copy h1 span {
  color: var(--landing-brand);
}

.contact-hero__copy p {
  max-width: 510px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.6;
}

.contact-hero__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.contact-hero__step {
  display: grid;
  gap: 8px;
  align-content: start;
}

.contact-hero__step strong {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--landing-brand);
}

.contact-hero__step span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.45;
}

.contact-request {
  padding-top: 36px;
}

.contact-request__heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.contact-phone-hidden {
  display: none !important;
}

.contact-form-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  background: #1b1f25;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 48px rgba(13, 18, 27, 0.16);
}

.contact-form-card__visual {
  min-height: 520px;
  padding: 26px 34px;
  background:
    url("../images/form/Recurso%2013Onstage.png") left center / cover no-repeat;
  display: flex;
  align-items: flex-start;
}

.contact-form-card__visual h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.contact-form-card__body {
  padding: 24px 34px 30px;
  color: #fff;
}

.contact-form-card__meta {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.contact-form-card__meta strong {
  color: var(--landing-brand);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field__input-wrap {
  position: relative;
}

.contact-field__input-wrap::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--landing-brand);
  box-shadow: 0 0 0 3px rgba(255, 83, 0, 0.16);
}

.contact-field__input-wrap--textarea::before {
  top: 20px;
  transform: none;
}

.contact-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  background: #2a3038;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 0.96rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.contact-input:focus {
  outline: none;
  border-color: rgba(255, 83, 0, 0.54);
  box-shadow: 0 0 0 3px rgba(255, 83, 0, 0.14);
}

.contact-input--textarea {
  min-height: 164px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.contact-field--error .contact-input {
  border-color: rgba(255, 123, 123, 0.6);
}

.contact-field__error {
  margin: 0;
  color: #ffadad;
  font-size: 0.84rem;
  line-height: 1.45;
}

.contact-field--phone .contact-field__phone-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
}

.contact-field__input-wrap--country::before {
  display: none;
}

.contact-input--country {
  padding-left: 16px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.contact-input.is-invalid {
  border-color: rgba(255, 123, 123, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 123, 123, 0.18);
}

.contact-input.is-valid {
  border-color: rgba(120, 200, 120, 0.55);
}

.contact-form__footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 6px;
  text-align: center;
}

.contact-form__submit {
  min-width: 240px;
}

.contact-form__footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-agenda {
  padding-top: 54px;
}

.contact-agenda__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.contact-agenda__item {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.contact-agenda__item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.contact-agenda__item p {
  margin: 0;
  max-width: 220px;
  color: var(--landing-ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-agenda__tagline {
  margin: 34px 0 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--landing-ink);
}

.contact-agenda__tagline span {
  color: var(--landing-brand);
}

.contact-band {
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.72) 38%, rgba(8, 10, 14, 0.22) 100%),
    url("../images/form/Recurso%2014Onstage.png") center center / cover no-repeat;
  padding: 66px 0;
}

.contact-band__content {
  display: flex;
  justify-content: flex-end;
}

.contact-band__copy {
  max-width: 470px;
}

.contact-band__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.55;
}

.contact-band__copy p + p {
  margin-top: 18px;
}

.contact-testimonials {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%),
    url("../images/form/Recurso%2025Onstage.png") center top / cover no-repeat;
}

.contact-testimonials .section-heading p {
  color: var(--landing-ink-soft);
}

@media (max-width: 1120px) {
  .contact-hero__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .contact-form-card {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  }

  .contact-agenda__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .contact-flashes {
    padding-top: 14px;
  }

  .contact-hero {
    min-height: 0;
  }

  .contact-hero__bg img {
    object-position: left center;
  }

  .contact-hero__content {
    min-height: 0;
    align-items: flex-end;
  }

  .contact-hero__copy {
    max-width: none;
    width: 100%;
    padding: 74px 24px 32px;
  }

  .contact-hero__copy p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .contact-hero__steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .contact-hero__step {
    max-width: 250px;
  }

  .contact-request {
    padding-top: 28px;
  }

  .contact-request .landing-shell {
    padding: 0 20px;
  }

  .contact-form-card {
    grid-template-columns: 1fr;
  }

  .contact-form-card__visual {
    min-height: 280px;
    padding: 24px;
    background-position: left center;
  }

  .contact-form-card__body {
    padding: 22px 20px 24px;
  }

  .contact-form__submit {
    width: 100%;
    min-width: 0;
  }

  .contact-field--phone .contact-field__phone-row {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .contact-agenda {
    padding-top: 42px;
  }

  .contact-agenda__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-band {
    padding: 42px 0;
    background:
      linear-gradient(180deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.74) 100%),
      url("../images/form/Recurso%2014Onstage.png") left center / cover no-repeat;
  }

  .contact-band__content {
    justify-content: center;
  }

  .contact-band__copy {
    max-width: none;
    text-align: center;
  }

  .contact-band__copy p {
    font-size: 1rem;
  }

}

@media (max-width: 380px) {
  .contact-field--phone .contact-field__phone-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 8px;
  }
}
