/* ══════════════════════════════════════════
   MCMV PAGE — mobile-first
   ══════════════════════════════════════════ */

/* ── Page Hero ── */
.mcmv-page-hero {
  background: #fff;
  padding-top: 80px;
  border-bottom: 1px solid #e8e8e8;
}

/* ── Hero body (stacked) ── */
.mcmv-hero__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0 48px;
  max-width: 680px;
}

.mcmv-page__logo {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

/* ── Headline ── */
.mcmv-hero__body h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1.2;
  margin: 0;
}

/* ── Description ── */
.mcmv-hero__body p {
  font-size: 15px;
  color: #626261;
  line-height: 1.7;
  margin: 0;
}

/* ── Hero actions (botões) ── */
.mcmv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid #2f2f2f;
  color: #2f2f2f;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn--outline:hover {
  background: #2f2f2f;
  color: #fff;
}

/* ── Hero stats bar — full width ── */
.mcmv-hero__stats-bar {
  border-top: 1px solid #e8e8e8;
  background: #f7f7f7;
}

.mcmv-hero__stats-inner {
  display: flex;
  align-items: center;
}

.mcmv-hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
}

.mcmv-hero__stat-div {
  width: 1px;
  height: 36px;
  background: #e0e0e0;
  flex-shrink: 0;
  margin: 0 20px;
}

.mcmv-hero__stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #2e9e5b;
  line-height: 1;
}

.mcmv-hero__stat-label {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

/* ── Quem pode participar ── */
.mcmv-quem-section {
  background: #f7f7f7;
  padding: 64px 0;
}

.mcmv-quem-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mcmv-quem__text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 12px;
}

.mcmv-quem__text p {
  font-size: 15px;
  color: #626261;
  line-height: 1.7;
  margin: 0;
}

.mcmv-quem__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mcmv-quem__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  border: 1px solid #e8e8e8;
}

.mcmv-quem__item-icon {
  width: 32px;
  height: 32px;
  background: #2e9e5b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mcmv-quem__item p {
  font-size: 14px;
  color: #2f2f2f;
  margin: 0;
  line-height: 1.5;
  padding-top: 6px;
}

@media (min-width: 1024px) {
  .mcmv-quem-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }

  .mcmv-quem__text {
    flex: 0 0 300px;
  }

  .mcmv-quem__list {
    flex: 1;
  }
}

/* ── Faixas obs ── */
.mcmv__faixas-obs {
  font-size: 12px;
  color: #999;
  margin-top: 20px;
  line-height: 1.5;
}

/* ── Benefícios ── */
.mcmv-benefits-section {
  padding: 64px 0;
  background: #fff;
}

.mcmv-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.mcmv-benefit-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mcmv-benefit-card__icon {
  width: 48px;
  height: 48px;
  background: #2e9e5b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mcmv-benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0;
}

.mcmv-benefit-card p {
  font-size: 13px;
  color: #626261;
  margin: 0;
  line-height: 1.5;
}

/* ── CTA ── */
.mcmv-cta-section {
  background: #ea3b37;
  padding: 56px 0;
}

.mcmv-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.mcmv-cta-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.mcmv-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin: 0;
}

/* ══════════════════════════════════════════
   TABLET  ≥ 768px
   ══════════════════════════════════════════ */
@media (min-width: 768px) {
  .mcmv-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mcmv-benefit-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .mcmv-benefit-card__icon {
    flex-shrink: 0;
  }
}

/* ══════════════════════════════════════════
   DESKTOP  ≥ 1024px
   ══════════════════════════════════════════ */
@media (min-width: 768px) {
  .mcmv-hero__body h1 {
    font-size: 40px;
  }

  .mcmv-hero__stat-value {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .mcmv-page-hero {
    padding-top: 100px;
  }

  .mcmv-hero__body {
    padding: 56px 0 64px;
    max-width: 720px;
  }

  .mcmv-hero__body h1 {
    font-size: 48px;
  }

  .mcmv-hero__stat-value {
    font-size: 26px;
  }

  .mcmv-hero__stat-label {
    font-size: 13px;
  }

  .mcmv-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .mcmv-cta-text h3 {
    font-size: 30px;
  }
}
