/*
 * Melhores Ônibus — Institutional Pages
 * Release 2.2 / Sprint 2.2A
 */

.mo-institutional-page {
  background: #f5f7fb;
  color: var(--mo-color-text, #101828);
}

.mo-institutional-main {
  overflow: hidden;
}

.mo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--mo-color-primary, #c7202f);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mo-company-hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 32, 47, .12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5f7fb 56%, #edf1f7 100%);
}

.mo-company-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -140px auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(16, 24, 40, .05);
  pointer-events: none;
}

.mo-company-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 36px;
  align-items: center;
}

.mo-company-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #101828;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}

.mo-company-hero-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.75;
}

.mo-company-hero-actions,
.mo-company-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mo-company-hero-card {
  padding: 28px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px rgba(16, 24, 40, .12);
  backdrop-filter: blur(12px);
}

.mo-company-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #101828;
  font-size: 18px;
}

.mo-company-card-header span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: #101828;
  color: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, .22);
}

.mo-company-hero-card p {
  margin: 0 0 18px;
  color: #475467;
  line-height: 1.65;
}

.mo-company-hero-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mo-company-hero-card li {
  display: flex;
  gap: 10px;
  color: #344054;
  font-size: 14px;
  line-height: 1.45;
}

.mo-company-hero-card li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 183, 106, .12);
  color: #079455;
  font-size: 12px;
  font-weight: 900;
}

.mo-company-section {
  padding: 72px 0;
}

.mo-company-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.mo-company-intro-grid h2,
.mo-section-heading h2,
.mo-company-cta h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 900;
}

.mo-company-text p {
  margin: 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.8;
}

.mo-company-text p + p {
  margin-top: 18px;
}

.mo-company-values-wrap {
  background: #fff;
}

.mo-section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.mo-section-heading-left {
  margin: 0 0 30px;
  text-align: left;
}

.mo-section-heading p {
  margin: 14px 0 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.mo-company-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mo-company-value-card {
  padding: 28px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 24, 40, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mo-company-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 32, 47, .22);
  box-shadow: 0 24px 58px rgba(16, 24, 40, .12);
}

.mo-company-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(199, 32, 47, .1);
  color: var(--mo-color-primary, #c7202f);
  font-weight: 900;
}

.mo-company-value-card h3 {
  margin: 0 0 10px;
  color: #101828;
  font-size: 20px;
  letter-spacing: -.02em;
}

.mo-company-value-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

.mo-company-process {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: start;
}

.mo-company-steps {
  display: grid;
  gap: 16px;
}

.mo-company-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, .05);
}

.mo-company-step span {
  display: grid;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  background: #101828;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.02em;
}

.mo-company-step h3 {
  margin: 0 0 6px;
  color: #101828;
  font-size: 18px;
}

.mo-company-step p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.mo-company-cta {
  padding: 0 0 84px;
}

.mo-company-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .16), transparent 32%),
    linear-gradient(135deg, #101828 0%, #1d2939 100%);
  color: #fff;
  box-shadow: 0 28px 76px rgba(16, 24, 40, .22);
}

.mo-company-cta .mo-kicker {
  color: rgba(255, 255, 255, .72);
}

.mo-company-cta h2 {
  color: #fff;
  max-width: 820px;
}

.mo-company-cta p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.mo-company-cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.mo-btn-success {
  background: #12b76a;
  color: #fff;
  border-color: #12b76a;
}

.mo-btn-success:hover {
  background: #079455;
  border-color: #079455;
  color: #fff;
}

@media (max-width: 980px) {
  .mo-company-hero-grid,
  .mo-company-intro-grid,
  .mo-company-process,
  .mo-company-cta-box {
    grid-template-columns: 1fr;
  }

  .mo-company-values-grid {
    grid-template-columns: 1fr;
  }

  .mo-company-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .mo-company-hero {
    padding: 48px 0 42px;
  }

  .mo-company-section {
    padding: 48px 0;
  }

  .mo-company-hero-card,
  .mo-company-value-card,
  .mo-company-cta-box {
    border-radius: 22px;
    padding: 22px;
  }

  .mo-company-step {
    grid-template-columns: 1fr;
  }

  .mo-company-step span {
    width: 60px;
  }

  .mo-company-hero-actions,
  .mo-company-cta-actions {
    flex-direction: column;
  }

  .mo-company-hero-actions .mo-btn,
  .mo-company-cta-actions .mo-btn {
    width: 100%;
    justify-content: center;
  }
}

.mo-institutional-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}

.mo-institutional-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mo-institutional-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*
 * Release 2.2 / Sprint 2.2B — Anuncie
 */
.mo-page-advertise {
  background: #f5f7fb;
}

.mo-ad-hero {
  position: relative;
  padding: 70px 0 52px;
  background:
    radial-gradient(circle at 14% 18%, rgba(199, 32, 47, .12), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(16, 24, 40, .08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fb 58%, #edf1f7 100%);
}

.mo-ad-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 34px;
  align-items: center;
}

.mo-ad-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  color: #101828;
  font-size: clamp(36px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}

.mo-ad-hero-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.75;
}

.mo-ad-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mo-ad-hero-card {
  padding: 28px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 70px rgba(16, 24, 40, .12);
  backdrop-filter: blur(12px);
}

.mo-ad-hero-card h2 {
  margin: 0 0 18px;
  color: #101828;
  font-size: 24px;
  letter-spacing: -.035em;
}

.mo-ad-hero-card ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mo-ad-hero-card li {
  padding: 16px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 18px;
  background: #fff;
}

.mo-ad-hero-card strong,
.mo-ad-hero-card span {
  display: block;
}

.mo-ad-hero-card strong {
  color: #101828;
  font-size: 14px;
}

.mo-ad-hero-card span {
  margin-top: 4px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.mo-ad-form-section {
  padding: 72px 0;
}

.mo-ad-layout {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(0, 1.48fr);
  gap: 28px;
  align-items: start;
}

.mo-ad-side-panel {
  position: sticky;
  top: 24px;
  padding: 28px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 40, .08);
}

.mo-ad-side-panel h2 {
  margin: 0;
  color: #101828;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 900;
}

.mo-ad-side-panel p {
  margin: 16px 0 0;
  color: #667085;
  line-height: 1.7;
}

.mo-ad-contact-card {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(199, 32, 47, .14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(199, 32, 47, .06), rgba(255,255,255,.92));
}

.mo-ad-contact-card strong,
.mo-ad-contact-card a,
.mo-ad-contact-card small {
  display: block;
}

.mo-ad-contact-card strong {
  color: #101828;
  font-size: 16px;
}

.mo-ad-contact-card p {
  margin: 8px 0 14px;
  font-size: 14px;
}

.mo-ad-contact-card a {
  width: max-content;
  padding: 11px 16px;
  border-radius: 999px;
  background: #12b76a;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

.mo-ad-contact-card small {
  margin-top: 12px;
  color: #667085;
  line-height: 1.5;
}

.mo-ad-form {
  display: grid;
  gap: 22px;
}

.mo-form-block {
  padding: 28px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 40, .07);
}

.mo-form-block-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.mo-form-block-header > span {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: #101828;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.02em;
}

.mo-form-block-header h3 {
  margin: 0;
  color: #101828;
  font-size: 24px;
  letter-spacing: -.025em;
}

.mo-form-block-header p {
  margin: 5px 0 0;
  color: #667085;
  line-height: 1.5;
}

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

.mo-field {
  display: grid;
  gap: 8px;
}

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

.mo-field span {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.mo-field input,
.mo-field select,
.mo-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 40, .14);
  border-radius: 14px;
  background: #fff;
  color: #101828;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.mo-field input,
.mo-field select {
  height: 48px;
  padding: 0 14px;
}

.mo-field textarea {
  min-height: 126px;
  padding: 14px;
  resize: vertical;
}

.mo-field input:focus,
.mo-field select:focus,
.mo-field textarea:focus {
  border-color: rgba(199, 32, 47, .46);
  box-shadow: 0 0 0 4px rgba(199, 32, 47, .1);
  background: #fff;
}

.mo-form-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 24, 40, .06);
}

.mo-form-footer p {
  max-width: 620px;
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

.mo-ad-benefits {
  padding: 0 0 84px;
}

.mo-ad-benefits-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(16, 24, 40, .08);
}

.mo-ad-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: #f8fafc;
}

.mo-ad-benefits span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(18, 183, 106, .12);
  color: #079455;
  font-weight: 900;
}

.mo-ad-benefits strong,
.mo-ad-benefits small {
  display: block;
}

.mo-ad-benefits strong {
  color: #101828;
  font-size: 15px;
}

.mo-ad-benefits small {
  margin-top: 3px;
  color: #667085;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .mo-ad-hero-grid,
  .mo-ad-layout,
  .mo-ad-benefits-box {
    grid-template-columns: 1fr;
  }

  .mo-ad-side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .mo-ad-hero {
    padding: 48px 0 42px;
  }

  .mo-ad-form-section {
    padding: 48px 0;
  }

  .mo-ad-hero-actions,
  .mo-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .mo-ad-hero-actions .mo-btn,
  .mo-form-footer .mo-btn {
    width: 100%;
    justify-content: center;
  }

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

  .mo-form-block,
  .mo-ad-side-panel,
  .mo-ad-hero-card,
  .mo-ad-benefits-box {
    border-radius: 22px;
    padding: 22px;
  }
}

/* Release 2.2C — Contact Page */
.mo-contact-hero {
  position: relative;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 85% 18%, rgba(199, 32, 47, .14), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5f7fb 55%, #eef2f7 100%);
}

.mo-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 32px;
  align-items: center;
}

.mo-contact-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #101828;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}

.mo-contact-hero-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.75;
}

.mo-contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mo-contact-card {
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(16, 24, 40, .08);
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 40, .10);
}

.mo-contact-card-dark {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(199, 32, 47, .45), transparent 32%),
    linear-gradient(135deg, #101828 0%, #172033 100%);
}

.mo-contact-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mo-contact-card strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
}

.mo-contact-card p,
.mo-contact-card small {
  display: block;
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.mo-contact-section {
  padding: 72px 0;
}

.mo-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.mo-contact-info {
  position: sticky;
  top: 96px;
  padding: 34px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(16, 24, 40, .08);
}

.mo-contact-info h2 {
  margin: 0;
  color: #101828;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 900;
}

.mo-contact-info p {
  margin: 16px 0 0;
  color: #667085;
  line-height: 1.7;
}

.mo-contact-channels {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.mo-contact-channel {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 20px;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mo-contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 32, 47, .25);
  box-shadow: 0 14px 34px rgba(16, 24, 40, .08);
}

.mo-contact-channel span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: rgba(199, 32, 47, .10);
}

.mo-contact-channel strong,
.mo-contact-channel small {
  display: block;
}

.mo-contact-channel strong {
  color: #101828;
  font-size: 15px;
}

.mo-contact-channel small {
  margin-top: 3px;
  color: #667085;
  line-height: 1.45;
}

.mo-contact-form {
  padding: 30px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(16, 24, 40, .08);
}

.mo-contact-form .mo-form-grid {
  margin-top: 24px;
}

.mo-contact-form-footer {
  margin-top: 24px;
  box-shadow: none;
  background: #f8fafc;
}

.mo-contact-support {
  padding: 0 0 84px;
}

.mo-contact-support-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(16, 24, 40, .08);
}

.mo-contact-support article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: #f8fafc;
}

.mo-contact-support span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: rgba(199, 32, 47, .10);
}

.mo-contact-support strong,
.mo-contact-support small {
  display: block;
}

.mo-contact-support strong {
  color: #101828;
  font-size: 15px;
}

.mo-contact-support small {
  margin-top: 3px;
  color: #667085;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .mo-contact-hero-grid,
  .mo-contact-layout,
  .mo-contact-support-box {
    grid-template-columns: 1fr;
  }

  .mo-contact-info {
    position: static;
  }
}

@media (max-width: 640px) {
  .mo-contact-hero,
  .mo-contact-section {
    padding: 48px 0;
  }

  .mo-contact-hero-actions,
  .mo-contact-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .mo-contact-hero-actions .mo-btn,
  .mo-contact-form-footer .mo-btn {
    width: 100%;
    justify-content: center;
  }

  .mo-contact-card,
  .mo-contact-info,
  .mo-contact-form,
  .mo-contact-support-box {
    border-radius: 22px;
    padding: 22px;
  }
}

/*
 * Release 2.2 / Sprint 2.2D — Institutional Polish
 * Consistência visual entre Empresa, Anuncie e Contato.
 */
:root {
  --mo-institutional-bg: #f4f7fb;
  --mo-institutional-card: #ffffff;
  --mo-institutional-text: #101828;
  --mo-institutional-muted: #667085;
  --mo-institutional-border: rgba(16, 24, 40, .08);
  --mo-institutional-shadow: 0 22px 60px rgba(16, 24, 40, .08);
  --mo-institutional-shadow-lg: 0 34px 90px rgba(16, 24, 40, .13);
  --mo-institutional-radius: 28px;
}

.mo-institutional-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 7% 12%, rgba(199, 32, 47, .08), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(16, 24, 40, .07), transparent 26%),
    var(--mo-institutional-bg);
}

.mo-institutional-page .container {
  width: min(1180px, calc(100% - 40px));
}

.mo-header .mo-menu a.is-active,
.mo-header .mo-menu a[aria-current="page"] {
  color: var(--mo-color-primary, #c7202f);
}

.mo-header .mo-menu a.is-active::after,
.mo-header .mo-menu a[aria-current="page"]::after {
  width: 100%;
  opacity: 1;
}

.mo-company-hero,
.mo-ad-hero,
.mo-contact-hero {
  padding: 76px 0 58px;
  border-bottom: 1px solid rgba(16, 24, 40, .06);
}

.mo-company-hero-copy h1,
.mo-ad-hero-copy h1,
.mo-contact-hero-copy h1 {
  text-wrap: balance;
}

.mo-company-hero-copy p,
.mo-ad-hero-copy p,
.mo-contact-hero-copy p,
.mo-section-heading p,
.mo-company-text p,
.mo-ad-side-panel p,
.mo-contact-info p {
  text-wrap: pretty;
}

.mo-company-hero-card,
.mo-ad-hero-card,
.mo-contact-card,
.mo-company-value-card,
.mo-form-block,
.mo-ad-side-panel,
.mo-contact-info,
.mo-contact-form,
.mo-contact-channel,
.mo-company-step,
.mo-ad-benefits-box,
.mo-contact-support-box {
  border-color: var(--mo-institutional-border);
  box-shadow: var(--mo-institutional-shadow);
}

.mo-company-hero-card:hover,
.mo-ad-hero-card:hover,
.mo-contact-card:hover,
.mo-company-value-card:hover,
.mo-contact-channel:hover {
  box-shadow: var(--mo-institutional-shadow-lg);
}

.mo-company-section,
.mo-ad-form-section,
.mo-contact-section {
  padding: 76px 0;
}

.mo-company-values-wrap,
.mo-contact-support {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
}

.mo-kicker {
  position: relative;
  padding-left: 18px;
}

.mo-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.mo-btn,
.mo-ad-contact-card a {
  min-height: 44px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.mo-btn:hover,
.mo-ad-contact-card a:hover {
  transform: translateY(-1px);
}

.mo-btn-primary,
.mo-ad-contact-card a {
  box-shadow: 0 14px 32px rgba(199, 32, 47, .18);
}

.mo-btn-success {
  box-shadow: 0 14px 32px rgba(18, 183, 106, .18);
}

.mo-field input,
.mo-field select,
.mo-field textarea,
.mo-contact-form input,
.mo-contact-form textarea,
.mo-ad-form input,
.mo-ad-form select,
.mo-ad-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 24, 40, .12);
  border-radius: 14px;
  background: #fff;
  color: #101828;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.mo-field input:focus,
.mo-field select:focus,
.mo-field textarea:focus,
.mo-contact-form input:focus,
.mo-contact-form textarea:focus,
.mo-ad-form input:focus,
.mo-ad-form select:focus,
.mo-ad-form textarea:focus {
  outline: none;
  border-color: rgba(199, 32, 47, .55);
  box-shadow: 0 0 0 4px rgba(199, 32, 47, .10);
}

.mo-field textarea,
.mo-contact-form textarea,
.mo-ad-form textarea {
  min-height: 132px;
  resize: vertical;
}

.mo-form-footer,
.mo-contact-form-footer {
  align-items: center;
}

.mo-ad-side-panel,
.mo-contact-info {
  top: 96px;
}

.mo-company-cta-box,
.mo-ad-benefits-box,
.mo-contact-support-box {
  overflow: hidden;
  position: relative;
}

.mo-company-cta-box::after,
.mo-ad-benefits-box::after,
.mo-contact-support-box::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(199, 32, 47, .08);
  pointer-events: none;
}

.mo-ad-benefits article,
.mo-contact-support article,
.mo-company-value-card,
.mo-company-step {
  will-change: transform;
}

@media (max-width: 980px) {
  .mo-institutional-page .container {
    width: min(100% - 32px, 1180px);
  }

  .mo-company-hero,
  .mo-ad-hero,
  .mo-contact-hero {
    padding: 56px 0 46px;
  }

  .mo-company-section,
  .mo-ad-form-section,
  .mo-contact-section {
    padding: 56px 0;
  }

  .mo-ad-side-panel,
  .mo-contact-info {
    position: static;
  }
}

@media (max-width: 640px) {
  .mo-institutional-page .container {
    width: min(100% - 24px, 1180px);
  }

  .mo-company-hero,
  .mo-ad-hero,
  .mo-contact-hero {
    padding: 42px 0 36px;
  }

  .mo-company-hero-copy h1,
  .mo-ad-hero-copy h1,
  .mo-contact-hero-copy h1 {
    font-size: clamp(32px, 11vw, 42px);
    line-height: 1.02;
  }

  .mo-company-hero-copy p,
  .mo-ad-hero-copy p,
  .mo-contact-hero-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .mo-company-hero-actions,
  .mo-ad-hero-actions,
  .mo-contact-hero-actions,
  .mo-form-footer,
  .mo-contact-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .mo-company-hero-actions .mo-btn,
  .mo-ad-hero-actions .mo-btn,
  .mo-contact-hero-actions .mo-btn,
  .mo-form-footer .mo-btn,
  .mo-contact-form-footer .mo-btn {
    width: 100%;
    justify-content: center;
  }

  .mo-company-hero-card,
  .mo-ad-hero-card,
  .mo-contact-card,
  .mo-form-block,
  .mo-ad-side-panel,
  .mo-contact-info,
  .mo-contact-form {
    border-radius: 22px;
    padding: 22px;
  }
}

@media print {
  .mo-topbar,
  .mo-header,
  .mo-company-hero-actions,
  .mo-ad-hero-actions,
  .mo-contact-hero-actions,
  .mo-company-cta,
  .mo-ad-contact-card,
  .mo-form-footer,
  .mo-contact-form-footer {
    display: none !important;
  }

  .mo-institutional-page {
    background: #fff !important;
  }

  .mo-company-section,
  .mo-ad-form-section,
  .mo-contact-section {
    padding: 24px 0 !important;
  }
}


/*
 * RC3.5.7Z.2 — Institutional UI Polish
 * Correções finais de alinhamento e responsividade
 * para Empresa, Anuncie e Contato.
 */

.mo-contact-channel {
  align-items: start;
}

.mo-contact-channel > span {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.mo-contact-channel > strong {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.mo-contact-channel > small {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mo-contact-support article {
  align-items: start;
}

.mo-contact-support article > span {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.mo-contact-support article > strong {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.mo-contact-support article > small {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mo-contact-layout > *,
.mo-contact-support-box > *,
.mo-ad-layout > *,
.mo-ad-benefits-box > *,
.mo-company-values-grid > * {
  min-width: 0;
}

.mo-contact-channel,
.mo-contact-support article,
.mo-ad-benefits article,
.mo-company-value-card {
  height: 100%;
}

.mo-contact-channel small,
.mo-contact-support small,
.mo-ad-benefits small,
.mo-company-value-card p {
  text-wrap: pretty;
}

.mo-contact-form {
  min-width: 0;
}

.mo-contact-form .mo-form-footer {
  gap: 24px;
}

.mo-contact-form .mo-form-footer p {
  flex: 1 1 auto;
  min-width: 0;
}

.mo-contact-form .mo-form-footer .mo-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .mo-contact-layout {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  }

  .mo-contact-info,
  .mo-contact-form {
    padding: 28px;
  }

  .mo-contact-support-box {
    gap: 14px;
    padding: 22px;
  }

  .mo-contact-support article {
    padding: 16px;
  }
}

@media (max-width: 980px) {
  .mo-contact-channel,
  .mo-contact-support article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .mo-contact-support-box {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .mo-contact-channel,
  .mo-contact-support article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .mo-contact-channel > span,
  .mo-contact-support article > span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .mo-contact-channel > small,
  .mo-contact-support article > small {
    font-size: 13px;
    line-height: 1.5;
  }

  .mo-contact-form .mo-form-footer .mo-btn {
    white-space: normal;
  }
}
