
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@400;500;600&display=swap');

.mh-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
}
.mh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mh-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--mh-petroleo-900);
}
.mh-brand__name {
  font: 800 1.12rem/1.1 var(--mh-font-display);
  letter-spacing: -.025em;
}
.mh-brand__tag {
  margin-top: 5px;
  font: 500 .62rem/1.2 var(--mh-font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mh-header__link {
  font: 700 .78rem/1 var(--mh-font-display);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.mh-hero {
  min-height: 760px;
  background: var(--mh-offwhite);
  overflow: hidden;
}
.mh-hero__grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(420px, .93fr);
  align-items: stretch;
}
.mh-hero__content {
  padding: 160px clamp(20px, 5vw, 70px) 90px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mh-hero h1 {
  max-width: 790px;
  font-size: clamp(3.1rem, 5.7vw, 6rem);
}
.mh-hero__lead {
  max-width: 680px;
  margin: 26px 0 32px;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
}
.mh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mh-hero__status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  font-size: .82rem;
  color: var(--mh-grafite-500);
}
.mh-hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mh-dourado-500);
  box-shadow: 0 0 0 6px rgba(183,155,98,.15);
}

/* Foto: sempre transparente e íntegra no celular */
.mh-hero__visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 72%, rgba(183,155,98,.14), transparent 34%),
    linear-gradient(135deg, #e7ece9 0%, #f7f7f3 68%);
  overflow: hidden;
}
.mh-hero__visual::before {
  content: "";
  position: absolute;
  width: min(86%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(13,41,46,.09);
  border-radius: 50%;
  top: 18%;
}
.mh-hero__photo {
  position: relative;
  z-index: 2;
  width: min(96%, 670px);
  height: 720px;
  object-fit: contain;
  object-position: center bottom;
  background: transparent !important;
}

.mh-manifesto {
  padding: clamp(55px, 7vw, 90px) 0;
  color: var(--mh-branco);
  background: var(--mh-petroleo-900);
  text-align: center;
}
.mh-manifesto p {
  max-width: 1030px;
  margin: 0 auto;
  font: 700 clamp(1.45rem, 2.7vw, 2.65rem)/1.35 var(--mh-font-display);
  letter-spacing: -.025em;
}

.mh-arriving {
  padding: var(--mh-space-section) 0;
}
.mh-arriving__head {
  max-width: 800px;
  margin-bottom: 50px;
}
.mh-arriving__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mh-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--mh-borda);
  border-radius: var(--mh-radius-md);
  background: var(--mh-branco);
}
.mh-card__number {
  color: var(--mh-dourado-500);
  font: 700 .7rem/1 var(--mh-font-display);
  letter-spacing: .16em;
}
.mh-card h3 {
  margin: 45px 0 10px;
  color: var(--mh-petroleo-900);
  font: 700 1.28rem/1.2 var(--mh-font-display);
}
.mh-card p { margin: 0; font-size: .91rem; }

.mh-intro {
  padding: var(--mh-space-section) 0;
  background: var(--mh-cinza-100);
}
.mh-intro__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.mh-intro__visual {
  min-height: 530px;
  border-radius: var(--mh-radius-lg);
  overflow: hidden;
  background: var(--mh-petroleo-800);
}
.mh-intro__visual img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  object-position: center 14%;
}
.mh-intro__copy {
  max-width: 680px;
}
.mh-intro__copy p {
  margin: 22px 0 0;
  font-size: 1.03rem;
}

.mh-signup {
  padding: var(--mh-space-section) 0;
  color: var(--mh-branco);
  background: var(--mh-grafite-900);
}
.mh-signup__grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(45px, 8vw, 115px);
  align-items: center;
}
.mh-signup .mh-title { color: var(--mh-branco); }
.mh-signup__copy p:last-child { max-width: 590px; }
.mh-form {
  padding: 28px;
  border-radius: var(--mh-radius-lg);
  background: var(--mh-branco);
  color: var(--mh-grafite-700);
  display: grid;
  gap: 14px;
}
.mh-field {
  display: grid;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
}
.mh-field input[type="text"],
.mh-field input[type="email"] {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #ccd5d2;
  border-radius: var(--mh-radius-sm);
  outline: none;
}
.mh-field input:focus {
  border-color: var(--mh-petroleo-700);
  box-shadow: 0 0 0 3px rgba(25,68,75,.1);
}
.mh-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .74rem;
}
.mh-consent input { margin-top: 4px; }
.mh-form__status { min-height: 1.3em; margin: 0; font-size: .78rem; }

.mh-footer {
  padding: 45px 0;
  border-top: 1px solid var(--mh-borda);
}
.mh-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}
.mh-footer strong {
  color: var(--mh-petroleo-900);
  font: 800 1rem/1.2 var(--mh-font-display);
}
.mh-footer p { margin: 8px 0 0; font-size: .82rem; }
.mh-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .78rem;
}
.mh-footer__links a { text-decoration: none; }
.mh-footer small {
  display: block;
  margin-top: 28px;
  color: var(--mh-grafite-500);
  font-size: .7rem;
}

@media (max-width: 980px) {
  .mh-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mh-hero__content {
    padding: 135px 0 55px;
  }
  .mh-hero__visual {
    min-height: 560px;
    height: 560px;
  }
  .mh-hero__photo {
    width: min(96%, 580px);
    height: 540px;
    object-fit: contain;
    object-position: center bottom;
  }
  .mh-arriving__grid { grid-template-columns: repeat(2, 1fr); }
  .mh-intro__grid, .mh-signup__grid { grid-template-columns: 1fr; }
  .mh-intro__visual { max-width: 640px; }
}
@media (max-width: 560px) {
  .mh-container { width: min(calc(100% - 32px), var(--mh-container)); }
  .mh-header { height: 78px; }
  .mh-brand__tag { display: none; }
  .mh-header__link { font-size: .7rem; }

  .mh-hero__content { padding: 112px 0 42px; }
  .mh-hero h1 { font-size: clamp(2.55rem, 13vw, 3.55rem); }
  .mh-hero__lead { margin: 22px 0 27px; font-size: .97rem; }
  .mh-hero__actions { flex-direction: column; align-items: stretch; }
  .mh-button { width: 100%; }

  .mh-hero__visual {
    min-height: 450px;
    height: 450px;
    align-items: flex-end;
    overflow: hidden;
  }
  .mh-hero__visual::before {
    width: 94%;
    top: 15%;
  }
  .mh-hero__photo {
    width: 100%;
    height: 430px;
    max-height: 430px;
    object-fit: contain !important;
    object-position: center bottom !important;
    transform: none !important;
  }

  .mh-manifesto p { font-size: 1.35rem; }
  .mh-arriving__grid { grid-template-columns: 1fr; }
  .mh-card { min-height: 190px; }
  .mh-card h3 { margin-top: 30px; }
  .mh-intro__visual, .mh-intro__visual img { min-height: 430px; }
  .mh-form { padding: 21px; }
  .mh-footer__top { grid-template-columns: 1fr; }
  .mh-footer__links { flex-direction: column; gap: 8px; }
}
