:root {
  --white: #fdfdfd;
  --ink: #171414;
  --display: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 0.75, 0.25, 1);
  --radius: 26px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--muted);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: 0.012em;
  color: var(--ink);
}

h1 {
  font-size: clamp(4.8rem, 8.1vw, 8.8rem);
}

h2 {
  font-size: clamp(3.5rem, 5.9vw, 6.5rem);
}

h3 {
  font-size: clamp(2.4rem, 3.2vw, 3.7rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}

.button {
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  background: #922313;
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(89, 83, 83, 0.24);
}

.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: 0.35s var(--ease);
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(241, 231, 231, 0.9);
  backdrop-filter: blur(18px);
  border-color: rgba(89, 83, 83, 0.1);
}

.brand {
  width: 174px;
  display: inline-flex;
  align-items: center;
  mix-blend-mode: multiply;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(89, 83, 83, 0.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 120px 24px 40px;
  background: var(--paper);
  align-content: start;
  gap: 18px;
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a:not(.button) {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(89, 83, 83, 0.15);
  padding-bottom: 15px;
}

.contact-hero {
  position: relative;
  min-height: 100svh;
  padding: 155px 0 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -280px;
  top: -310px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose), rgba(167, 43, 24, 0.86));
  z-index: -3;
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: -190px;
  bottom: -160px;
  border: 1px solid rgba(167, 43, 24, 0.16);
  border-radius: 50%;
  z-index: -1;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.contact-hero h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(4.5rem, 7.2vw, 7.9rem);
}

.contact-hero-intro {
  max-width: 650px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.contact-hero-panel {
  position: relative;
  min-height: 490px;
  padding: 46px;
  border: 1px solid rgba(89, 83, 83, 0.13);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(
      180deg,
      rgba(253, 253, 253, 0.86),
      rgba(253, 253, 253, 0.65)
    ),
    linear-gradient(145deg, var(--white), var(--rose));
  box-shadow: 0 34px 80px rgba(89, 83, 83, 0.16);
  overflow: hidden;
}

.contact-hero-panel::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -110px;
  top: -95px;
  border: 1px solid rgba(167, 43, 24, 0.23);
  border-radius: 50%;
}

.contact-panel-kicker {
  position: absolute;
  left: 46px;
  top: 42px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-hero-panel strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 400;
  line-height: 0.72;
}

.contact-hero-panel p {
  margin: 25px 0 0;
  color: var(--ink);
  font-weight: 600;
}

.contact-panel-line {
  width: 100%;
  height: 1px;
  margin: 26px 0 19px;
  background: rgba(89, 83, 83, 0.17);
}

.contact-hero-panel > span:last-child {
  max-width: 310px;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 24px;
  bottom: 34px;
  writing-mode: vertical-rl;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-channels {
  padding: 145px 0;
  background: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 68px;
}

.section-head h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-head > p {
  max-width: 500px;
  margin: 0 0 8px auto;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(89, 83, 83, 0.16);
  border-left: 1px solid rgba(89, 83, 83, 0.16);
}

.channel-card {
  position: relative;
  min-height: 380px;
  padding: 36px;
  border-right: 1px solid rgba(89, 83, 83, 0.16);
  border-bottom: 1px solid rgba(89, 83, 83, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    background 0.42s var(--ease),
    color 0.42s var(--ease),
    transform 0.42s var(--ease);
}

.channel-card:hover {
  z-index: 2;
  color: rgba(241, 231, 231, 0.72);
  background: var(--ink);
  transform: translateY(-8px);
}

.channel-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -120px;
  bottom: -120px;
  border: 1px solid rgba(167, 43, 24, 0.2);
  border-radius: 50%;
  transition: transform 0.5s var(--ease);
}

.channel-card:hover::after {
  transform: scale(1.55);
  border-color: rgba(221, 178, 178, 0.34);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(167, 43, 24, 0.08);
  transition:
    color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.channel-icon svg {
  width: 22px;
  height: 22px;
}

.channel-card:hover .channel-icon {
  color: var(--white);
  background: var(--brand);
}

.channel-index {
  position: absolute;
  right: 30px;
  top: 28px;
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.55rem;
}

.channel-card h3 {
  margin: auto 0 14px;
  color: inherit;
}

.channel-card p {
  max-width: 330px;
  margin-bottom: 28px;
}

.channel-card strong {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.channel-card:hover strong {
  color: var(--rose);
}

.contact-form-area {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  margin-top: 92px;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(89, 83, 83, 0.14);
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(241, 231, 231, 0.96),
    rgba(253, 253, 253, 0.86)
  );
  overflow: hidden;
  isolation: isolate;
}

.contact-form-area::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -250px;
  bottom: -260px;
  border: 1px solid rgba(167, 43, 24, 0.15);
  border-radius: 50%;
  z-index: -1;
}

.contact-form-area::after {
  content: "FORM";
  position: absolute;
  right: 26px;
  top: 10px;
  color: rgba(167, 43, 24, 0.055);
  font-family: var(--display);
  font-size: clamp(7rem, 15vw, 13rem);
  line-height: 1;
  z-index: -1;
}

.contact-form-copy {
  position: relative;
  z-index: 1;
  max-width: 460px;
  padding-top: 8px;
}

.contact-form-copy h3 {
  max-width: 430px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 5vw, 5.6rem);
}

.contact-form-copy > p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--ink);
}

.contact-form-note {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(89, 83, 83, 0.15);
}

.contact-form-note span,
.contact-form-note strong {
  display: block;
}

.contact-form-note span {
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form-note strong {
  max-width: 340px;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-form-card {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3.4vw, 46px);
  border: 1px solid rgba(89, 83, 83, 0.14);
  border-radius: 28px;
  background: rgba(253, 253, 253, 0.92);
  box-shadow: 0 28px 70px rgba(89, 83, 83, 0.12);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.form-field {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-field > label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.form-field label span,
.form-field > label span {
  color: var(--brand);
}

.form-field input,
.form-field select,
.form-field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(89, 83, 83, 0.2);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 164px;
  padding: 14px 16px;
  line-height: 1.55;
  resize: vertical;
}

.form-field select {
  appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 23px,
    calc(100% - 15px) 23px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(167, 43, 24, 0.09);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--brand);
}

.form-field small {
  display: block;
  margin-top: 7px;
  font-size: 0.68rem;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.form-consent a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-submit {
  width: auto;
  min-width: 230px;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  display: none;
  min-height: 0;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #174e2a;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.32);
}

.form-status.is-error {
  color: #7f1e10;
  background: rgba(167, 43, 24, 0.08);
  border: 1px solid rgba(167, 43, 24, 0.25);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.location {
  padding: 145px 0;
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.location-copy h2 {
  max-width: 620px;
}

.location-copy > p {
  max-width: 500px;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 34px 0 30px;
}

.location-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
}

.location-icon svg {
  width: 24px;
  height: 24px;
}

.location-detail strong,
.location-detail span {
  display: block;
}

.location-detail strong {
  color: var(--ink);
}

.location-detail span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.3s var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.contact-map {
  position: relative;
  min-height: 570px;
  border-radius: 30px;
  overflow: hidden;
  background: #d8d1d1;
  box-shadow: 0 30px 75px rgba(89, 83, 83, 0.17);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) saturate(0.12) contrast(1.04);
  transition: filter 0.55s var(--ease);
}

.contact-map:hover iframe,
.contact-map:focus-within iframe {
  filter: grayscale(0) saturate(1) contrast(1);
}

.map-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.contact-map:hover .map-label,
.contact-map:focus-within .map-label {
  opacity: 0;
  transform: translateY(8px);
}

.contact-close {
  padding: 135px 0;
  background: linear-gradient(
    135deg,
    var(--rose),
    var(--paper) 55%,
    var(--white)
  );
}

.contact-close-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.contact-close h2 {
  margin-bottom: 0;
}

.contact-close-grid > div p {
  max-width: 520px;
  color: var(--ink);
}

.contact-close-grid .button {
  margin-top: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.7fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(241, 231, 231, 0.14);
}

.footer-logo-card {
  display: inline-flex;
  width: 218px;
  padding: 13px 17px;
  margin-bottom: 24px;
  border-radius: 12px;
}

.footer-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.footer h4 {
  margin: 0 0 20px;
  color: var(--rose);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--white);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 42px rgba(89, 83, 83, 0.23);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}

.whatsapp:hover {
  transform: translateY(-4px) rotate(-4deg);
  background: #1fbe5d;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: 0.1s;
}

[data-delay="2"] {
  transition-delay: 0.2s;
}

[data-delay="3"] {
  transition-delay: 0.3s;
}

@media (max-width: 1060px) {
  .nav-links {
    gap: 17px;
  }

  .nav-links a {
    font-size: 0.66rem;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 158px;
  }

  .nav-links,
  .nav-action {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .contact-hero {
    min-height: auto;
    padding-top: 135px;
  }

  .contact-hero-grid,
  .section-head,
  .location-grid,
  .contact-close-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-panel {
    min-height: 420px;
  }

  .section-head > p {
    margin-left: 0;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .channel-card {
    min-height: 340px;
  }

  .contact-form-area {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 72px;
  }

  .contact-form-copy {
    max-width: 660px;
  }

  .contact-form-copy h3,
  .contact-form-copy > p {
    max-width: 620px;
  }

  .contact-map {
    min-height: 500px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 24px);
    --radius: 20px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 5.8rem);
  }

  h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .contact-hero {
    padding: 120px 0 86px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-hero-panel {
    min-height: 360px;
    padding: 32px;
  }

  .contact-panel-kicker {
    left: 32px;
    top: 30px;
  }

  .contact-hero-panel strong {
    font-size: 8.2rem;
  }

  .contact-channels,
  .location,
  .contact-close {
    padding: 100px 0;
  }

  .section-head {
    gap: 28px;
    margin-bottom: 48px;
  }

  .channel-card {
    min-height: 320px;
    padding: 26px;
  }

  .contact-form-area {
    gap: 34px;
    margin-top: 56px;
    padding: 24px 16px;
    border-radius: 24px;
  }

  .contact-form-area::after {
    right: 12px;
    font-size: 7rem;
  }

  .contact-form-copy h3 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .contact-form-note {
    margin-top: 30px;
  }

  .contact-form-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-field--full {
    grid-column: auto;
  }

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

  .channel-index {
    right: 25px;
  }

  .contact-map {
    min-height: 420px;
    border-radius: 22px;
  }

  .map-label {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Etapa 1: estabilização do hero em tablets e celulares */
@media (max-width: 980px) {
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 7vw, 56px);
    align-items: start;
  }

  .contact-hero-grid > *,
  .contact-hero-copy,
  .contact-hero-panel {
    min-width: 0;
    max-width: 100%;
  }

  .contact-hero-panel {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .contact-hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
    line-height: 0.92;
  }

  .contact-hero {
    overflow: hidden;
  }

  .contact-hero-grid {
    gap: 30px;
  }

  .contact-hero h1,
  .contact-hero-intro {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }
}

/* Formulário de contato em duas colunas */

.contact-form-card #contactForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 16px;
  align-items: start;
}

.contact-form-card .form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-form-card .form-field--full,
.contact-form-card .form-consent,
.contact-form-card .form-status,
.contact-form-card .form-actions {
  grid-column: 1 / -1;
}

.contact-form-card input:not([type="checkbox"]),
.contact-form-card select,
.contact-form-card textarea {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-form-card .form-actions {
  display: flex;
  justify-content: flex-start;
}

.contact-form-card .contact-submit {
  width: auto;
  min-width: 230px;
}

/* Celulares */

@media (max-width: 700px) {
  .contact-form-card #contactForm {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .contact-form-card .form-field,
  .contact-form-card .form-field--full,
  .contact-form-card .form-consent,
  .contact-form-card .form-status,
  .contact-form-card .form-actions {
    grid-column: 1;
  }

  .contact-form-card .contact-submit {
    width: 100%;
    min-width: 0;
  }
}
