/* ==========================================================
   MINC – CSS GLOBAL + BLOCO 2
   ========================================================== */

:root {
  --mc-orange: #FF6B00;
  --mc-yellow: #FFB800;
  --mc-black:  #0A0A0A;
  --mc-white:  #FFFFFF;
  --mc-grey:   #888888;
  --mc-grey-lt:#CCCCCC;
  --mc-pill:   999px;
}

body {
  background-color: var(--mc-black) !important;
  color: var(--mc-white);
  -webkit-font-smoothing: antialiased;
  font-family: 'Paralucent', system-ui, sans-serif;
}

/* ── ESCONDE TEXTO INTRUSO DO TEMA ── */
.entry-content p:not(.mc-phrase):not(.mc-hero__sub):not(.mc-hero__text),
.post-content p:not(.mc-phrase):not(.mc-hero__sub):not(.mc-hero__text),
p.mc-unwanted {
  display: none !important;
}
.mc-hero p.mc-phrase,
.mc-hero p.mc-hero__sub,
.mc-hero p.mc-hero__text {
  display: block !important;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */

.mc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--mc-black);
  padding: 140px 0 80px;
}

.mc-hero__video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: block;
}
.mc-hero__video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: max(177.78vh, 100vw);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%) scale(1.3);
  border: none;
  pointer-events: none;
}

.mc-hero__video-bg--mobile {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: none;
}
.mc-hero__video-bg--mobile iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: max(100vw, 56.25vh);
  height: max(100vh, 177.78vw);
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.mc-hero__video-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}
.mc-hero__video-mask::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--mc-black);
  z-index: 2;
}
.mc-hero__video-mask::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--mc-black);
  z-index: 2;
}

.mc-hero__overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.72) 55%,
    rgba(255,107,0,0.10) 100%
  );
}

.mc-hero__blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  z-index: 3;
  pointer-events: none;
}

.mc-hero__inner {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.mc-hero__logo {
  display: block;
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 2px solid rgba(255,107,0,0.40);
  box-shadow: 0 0 16px rgba(255,107,0,0.20);
}

.mc-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.10);
  border: 1px solid rgba(255,107,0,0.28);
  border-radius: var(--mc-pill);
  padding: 5px 14px;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mc-orange);
  margin-bottom: 28px;
}

.mc-hero__dot {
  width: 7px; height: 7px;
  background: var(--mc-orange);
  border-radius: 50%;
  animation: mc-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
  display: inline-block;
}

@keyframes mc-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(1.6); }
}

.mc-hero__title {
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 55%, rgba(255,255,255,0.30) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mc-hero__title em {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mc-orange) 0%, var(--mc-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FRASES EM LOOP – DESKTOP ── */
.mc-phrases {
  position: relative;
  min-height: 72px;
  margin-bottom: 44px;
  overflow: hidden;
}
.mc-phrase {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  font-weight: 400;
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  color: rgba(255,255,255,0.90);
  line-height: 1.65;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.mc-phrase.mc-phrase--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── BOTÕES ── */
.mc-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 52px;
}
.mc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--mc-pill);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.mc-btn-primary {
  background: linear-gradient(135deg, var(--mc-orange) 0%, var(--mc-yellow) 100%);
  color: #0A0A0A;
  box-shadow: 0 0 28px rgba(255,107,0,0.30);
}
.mc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(255,107,0,0.50);
  color: #0A0A0A;
}
.mc-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--mc-white);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}
.mc-btn-secondary:hover {
  border-color: var(--mc-orange);
  color: var(--mc-orange);
  transform: translateY(-2px);
}
/* dot do botão ao vivo – transparente */
.mc-btn-secondary .mc-hero__dot {
  background: rgba(255,255,255,0.55);
  animation: none;
  width: 6px; height: 6px;
  box-shadow: none;
}

/* ── INFO CARDS ── */
.mc-hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.mc-hero__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 10px 18px;
}
.mc-hero__info-dot {
  width: 8px; height: 8px;
  background: var(--mc-orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.mc-hero__info-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--mc-white);
  display: block;
  line-height: 1.2;
}
.mc-hero__info-desc {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--mc-grey-lt);
  display: block;
  line-height: 1.2;
}

/* ── ANIMAÇÕES DE ENTRADA ── */
@keyframes mc-fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.mc-anim-1 { animation: mc-fadeUp 0.7s ease both; animation-delay: 0.08s; }
.mc-anim-2 { animation: mc-fadeUp 0.7s ease both; animation-delay: 0.22s; }
.mc-anim-3 { animation: mc-fadeUp 0.7s ease both; animation-delay: 0.36s; }
.mc-anim-4 { animation: mc-fadeUp 0.7s ease both; animation-delay: 0.50s; }
.mc-anim-5 { animation: mc-fadeUp 0.7s ease both; animation-delay: 0.64s; }

/* ── FADE AO ROLAR ── */
.mc-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.mc-fade.mc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   BLOCO 2 – A IGREJA QUE CONSTRUÍMOS
   ══════════════════════════════════════ */

.mc-vision {
  position: relative;
  z-index: 5;
  background: var(--mc-black);
  padding: 100px 0 80px;
  overflow: hidden;
}

/* linha laranja de separação */
.mc-vision::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--mc-orange), var(--mc-yellow));
  border-radius: 2px;
}

.mc-vision__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* cabeçalho da seção */
.mc-vision__header {
  text-align: center;
  margin-bottom: 64px;
}
.mc-vision__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.10);
  border: 1px solid rgba(255,107,0,0.28);
  border-radius: var(--mc-pill);
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mc-orange);
  margin-bottom: 24px;
}
.mc-vision__title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mc-vision__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--mc-orange) 0%, var(--mc-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mc-vision__sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.60);
  font-weight: 400;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* grid de cards */
.mc-vision__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* card base */
.mc-card {
  position: relative;
  border-radius: 20px;
  padding: 36px 32px 40px;
  overflow: hidden;
  background: linear-gradient(145deg,
    rgba(255,107,0,0.12) 0%,
    rgba(10,10,10,0.95) 60%
  );
  border: 1px solid rgba(255,107,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

/* efeito glow de fundo */
.mc-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* linha decorativa no topo do card */
.mc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--mc-orange), var(--mc-yellow), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mc-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(255,107,0,0.18),
    0 4px 20px rgba(0,0,0,0.40);
  border-color: rgba(255,107,0,0.45);
}
.mc-card:hover::before { opacity: 1.5; }
.mc-card:hover::after  { opacity: 1; }

/* ícone do card */
.mc-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,0,0.22) 0%, rgba(255,184,0,0.10) 100%);
  border: 1px solid rgba(255,107,0,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: background 0.35s ease;
}
.mc-card:hover .mc-card__icon {
  background: linear-gradient(135deg, rgba(255,107,0,0.40) 0%, rgba(255,184,0,0.20) 100%);
}

/* número decorativo */
.mc-card__number {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,107,0,0.07);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.mc-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mc-orange);
  margin-bottom: 10px;
}

.mc-card__title {
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.2;
  color: var(--mc-white);
  margin: 0 0 14px;
}

.mc-card__text {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0 0 28px;
}

.mc-card__quote {
  border-left: 2px solid rgba(255,107,0,0.40);
  padding-left: 14px;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 28px;
}

.mc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mc-orange);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.25s ease, color 0.25s ease;
}
.mc-card__link::after {
  content: '→';
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}
.mc-card__link:hover {
  color: var(--mc-yellow);
  gap: 10px;
}
.mc-card__link:hover::after {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   MOBILE
   ══════════════════════════════════════ */

@media (max-width: 768px) {

  .mc-hero__video-bg         { display: none; }
  .mc-hero__video-bg--mobile { display: block; }

  .mc-hero {
    padding: 60px 0 100px;
    min-height: 100svh;
    align-items: flex-start;
  }

  /* ── CORREÇÃO PRINCIPAL: inner vira flex coluna ──
     width: 100% em TUDO que é filho direto
     para evitar collapse com align-items: center */
  .mc-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.4rem;
    width: 100%;
  }

  /* garante que cada bloco filho ocupe 100% da largura */
  .mc-hero__inner > * {
    width: 100%;
  }

  .mc-hero__logo {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    display: block;
  }

  .mc-hero__chip {
    margin-bottom: 20px;
  }

  .mc-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    margin-bottom: 20px;
    text-align: center;
  }

  /* ── FRASE CORRIGIDA ──
     O problema era largura zero por causa do
     align-items:center no pai flex.
     Agora .mc-anim-3 tem width:100% e
     .mc-phrases também, resolvendo o colapso. */
  .mc-phrases {
    width: 100% !important;
    min-height: 90px;
    margin-bottom: 24px;
    text-align: center;
    overflow: hidden;
    position: relative;
  }

  .mc-phrase {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.01em;
  }

  .mc-hero__buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 32px;
    width: 100%;
  }
  .mc-btn {
    width: 100%;
    justify-content: center;
  }

  .mc-hero__info {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .mc-hero__info-item {
    width: 100%;
    justify-content: center;
  }

  /* Bloco 2 mobile */
  .mc-vision {
    padding: 70px 0 60px;
  }
  .mc-vision__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mc-card {
    padding: 28px 24px 32px;
  }
  .mc-card__number {
    font-size: 3rem;
    top: 20px; right: 20px;
  }
}

/* tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .mc-vision__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   MENU INFERIOR MOBILE
   ══════════════════════════════════════ */

.mc-bottom-nav { display: none; }

@media (max-width: 768px) {
  .mc-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0 env(safe-area-inset-bottom, 8px);
    justify-content: space-around;
    align-items: center;
  }
  .mc-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--mc-grey);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }
  .mc-bottom-nav__item.active,
  .mc-bottom-nav__item:hover { color: var(--mc-orange); }
  .mc-bottom-nav__icon {
    font-size: 1.25rem;
    line-height: 1;
  }
  /* ícone Ao Vivo – quadrado vazado branco */
  .mc-bottom-nav__item:nth-child(3) .mc-bottom-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 7px;
    border: 1.5px solid rgba(255,255,255,0.80);
    background: transparent !important;
    color: rgba(255,255,255,0.90);
  }
  .mc-bottom-nav__item:nth-child(3):focus,
  .mc-bottom-nav__item:nth-child(3):active {
    background: transparent !important;
    outline: none !important;
  }
  body { padding-bottom: 70px !important; }
}
/* ══════════════════════════════════════
   BLOCO 3 – VIVENDO IGREJA EM CADA CASA
   ══════════════════════════════════════ */

.mc-life {
  position: relative;
  z-index: 5;
  padding: 90px 0 100px;
  background:
    radial-gradient(circle at top right,
      rgba(255,107,0,0.12) 0%, transparent 50%),
    radial-gradient(circle at bottom left,
      rgba(255,184,0,0.10) 0%, transparent 50%),
    #050505;
}

.mc-life__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Cabeçalho */
.mc-life__header {
  text-align: left;
  max-width: 680px;
  margin: 0 0 48px;
}

.mc-life__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.mc-life__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,107,0,1),
    rgba(255,184,0,0.1));
  box-shadow: 0 0 14px rgba(255,107,0,0.9);
}

.mc-life__title {
  margin: 16px 0 12px;
  font-size: clamp(2.1rem, 4.3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.mc-life__title em {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mc-orange), var(--mc-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mc-life__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

/* Grid de cards */
.mc-life__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Card */
.mc-life-card {
  position: relative;
  border-radius: 20px;
  padding: 24px 20px 26px;
  background:
    linear-gradient(150deg,
      rgba(255,107,0,0.16) 0%,
      rgba(10,10,10,0.98) 55%,
      rgba(255,184,0,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.75),
    inset 0 0 0 0.8px rgba(255,255,255,0.04);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease,
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

/* Efeito glow interno */
.mc-life-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(255,255,255,0.14),
      transparent 60%);
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.mc-life-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,184,0,0.7);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.9),
    0 0 30px rgba(255,107,0,0.45);
}
.mc-life-card:hover::before {
  opacity: 1;
}

/* Ícone */
.mc-life-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(255,107,0,0.26),
      rgba(255,184,0,0.16));
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 1.45rem;
}

/* Título e textos */
.mc-life-card__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.mc-life-card__text {
  margin: 4px 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
}

.mc-life-card__highlight {
  margin: 12px 0 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  font-style: italic;
}

/* MOBILE – Bloco 3 */
@media (max-width: 768px) {
  .mc-life {
    padding: 70px 0 80px;
  }
  .mc-life__inner {
    padding: 0 1.4rem;
  }
  .mc-life__header {
    text-align: center;
    margin-bottom: 32px;
    max-width: 100%;
  }
  .mc-life__sub {
    font-size: 0.9rem;
  }
  .mc-life__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }
  .mc-life-card {
    padding: 20px 18px 22px;
  }
}

/* TABLET – 2 cards por linha */
@media (min-width: 769px) and (max-width: 1100px) {
  .mc-life__grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
  }
}