/* ============================================================
   Matrix Print — Outsourcing de Impressão
   Arquivo: mp-outsourcing.css
   Prefixo: mpot-
   ============================================================ */

:root {
  --mpot-dark:        #090b12;
  --mpot-dark-2:      #0d1020;
  --mpot-dark-3:      #131728;
  --mpot-dark-4:      #1a1f35;
  --mpot-orange:      #FF6B1A;
  --mpot-orange-dim:  rgba(255, 107, 26, 0.08);
  --mpot-orange-mid:  rgba(255, 107, 26, 0.15);
  --mpot-orange-bdr:  rgba(255, 107, 26, 0.22);
  --mpot-orange-glow: rgba(255, 107, 26, 0.30);
  --mpot-white:       #ffffff;
  --mpot-gray:        #a0a8c0;
  --mpot-gray-2:      #6b7280;
  --mpot-border:      rgba(255, 255, 255, 0.06);
  --mpot-border-d:    rgba(0, 0, 0, 0.07);
  --mpot-bg:          #f0f1f6;
  --mpot-font-d:      'Space Grotesk', sans-serif;
  --mpot-font-b:      'Space Grotesk', sans-serif;
}

/* ══════════════════════════════════════════════════════════
   01. HERO
   ══════════════════════════════════════════════════════════ */
.mpot-hero {
  background: var(--mpot-dark);
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 40px) 0 0;
}

/* Grade de fundo */
.mpot-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,26,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow radial */
.mpot-hero-glow {
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,107,26,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.mpot-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding-bottom: clamp(50px, 7vw, 90px);
}

.mpot-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mpot-font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mpot-orange);
  background: var(--mpot-orange-dim);
  border: 1px solid var(--mpot-orange-bdr);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.mpot-hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--mpot-orange);
  border-radius: 50%;
  animation: mpot-blink 2s ease-in-out infinite;
}

@keyframes mpot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.mpot-hero-title {
  font-family: var(--mpot-font-d);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--mpot-white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
}

.mpot-hero-title em {
  color: var(--mpot-orange);
  font-style: normal;
}

.mpot-hero-sub {
  font-family: var(--mpot-font-b);
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--mpot-gray);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 520px;
}

.mpot-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mpot-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mpot-font-b);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  padding: 13px 24px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.mpot-btn--primary {
  color: var(--mpot-dark);
  background: var(--mpot-orange);
  border: 2px solid var(--mpot-orange);
}

.mpot-btn--primary:hover {
  background: transparent;
  color: var(--mpot-orange);
  text-decoration: none;
  transform: translateY(-2px);
}

.mpot-btn--ghost {
  color: var(--mpot-gray);
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--mpot-border);
}

.mpot-btn--ghost:hover {
  border-color: var(--mpot-orange-bdr);
  color: var(--mpot-white);
  text-decoration: none;
}

.mpot-btn svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

.mpot-btn--primary:hover svg { transform: translateX(4px); }

/* Painel de stats do hero */
.mpot-hero-stats {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--mpot-border);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.mpot-hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mpot-orange), transparent);
}

.mpot-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mpot-stat-num {
  font-family: var(--mpot-font-d);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--mpot-orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.mpot-stat-label {
  font-family: var(--mpot-font-b);
  font-size: 12px;
  color: var(--mpot-gray);
  line-height: 1.4;
}

.mpot-stat-divider {
  grid-column: span 2;
  height: 1px;
  background: var(--mpot-border);
}

/* Barra de destaque embaixo do hero */
.mpot-hero-strip {
  background: var(--mpot-orange);
  overflow: hidden;
  padding: 0;
}

.mpot-strip-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
}

.mpot-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: mpot-marquee 25s linear infinite;
  flex-shrink: 0;
}

@keyframes mpot-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

.mpot-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mpot-font-b);
  font-size: 13px;
  font-weight: 700;
  color: var(--mpot-dark);
  padding: 0 24px;
}

.mpot-strip-item svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--mpot-dark);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.mpot-strip-sep {
  width: 4px; height: 4px;
  background: rgba(9,11,18,0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   02. SEÇÃO GENÉRICA
   ══════════════════════════════════════════════════════════ */
.mpot-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.mpot-section--dark {
  background: var(--mpot-dark);
}

.mpot-section--light {
  background: var(--mpot-bg);
}

.mpot-section--mid {
  background: var(--mpot-dark-2);
}

.mpot-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.mpot-sec-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.mpot-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mpot-font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mpot-orange);
  background: var(--mpot-orange-dim);
  border: 1px solid var(--mpot-orange-bdr);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.mpot-sec-title {
  font-family: var(--mpot-font-d);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--mpot-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.mpot-sec-title--dark { color: var(--mpot-dark); }

.mpot-sec-title em {
  color: var(--mpot-orange);
  font-style: normal;
}

.mpot-sec-sub {
  font-family: var(--mpot-font-b);
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--mpot-gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.mpot-sec-sub--dark { color: var(--mpot-gray-2); }

/* ══════════════════════════════════════════════════════════
   03. O QUE É — BLOCO CONCEITO
   ══════════════════════════════════════════════════════════ */
.mpot-conceito-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

.mpot-conceito-text .mpot-sec-title,
.mpot-conceito-text .mpot-sec-sub {
  text-align: left;
  margin-left: 0;
}

.mpot-conceito-text .mpot-sec-tag { margin-bottom: 12px; }

.mpot-conceito-text p {
  font-family: var(--mpot-font-b);
  font-size: clamp(15px, 1.2vw, 17px); /* era 14px, 1.1vw, 15px */
  color: var(--mpot-gray);
  line-height: 1.8;
  margin: 0 0 16px;
}

.mpot-conceito-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mpot-cmp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--mpot-border);
  border-radius: 14px;
  padding: 20px;
}

.mpot-cmp-card--bad  { border-color: rgba(239,68,68,0.2);  background: rgba(239,68,68,0.04); }
.mpot-cmp-card--good { border-color: rgba(255,107,26,0.25); background: var(--mpot-orange-dim); }

.mpot-cmp-label {
  font-family: var(--mpot-font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mpot-cmp-card--bad  .mpot-cmp-label { color: #ef4444; }
.mpot-cmp-card--good .mpot-cmp-label { color: var(--mpot-orange); }

.mpot-cmp-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--mpot-font-b);
   font-size: 14px; /* era 12.5px */
  color: var(--mpot-gray);
  line-height: 1.5;
  margin-bottom: 8px;
}

.mpot-cmp-item:last-child { margin-bottom: 0; }

.mpot-cmp-item::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.mpot-cmp-card--bad  .mpot-cmp-item::before { background-color: rgba(239,68,68,0.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); }
.mpot-cmp-card--good .mpot-cmp-item::before { background-color: var(--mpot-orange-mid); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B1A' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* ══════════════════════════════════════════════════════════
   04. COMO FUNCIONA — STEPS
   ══════════════════════════════════════════════════════════ */
.mpot-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Linha conectora */
.mpot-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--mpot-orange-bdr), var(--mpot-orange), var(--mpot-orange-bdr));
}

.mpot-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(20px);
}

.mpot-step.mpot-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.mpot-step-num {
  width: 72px; height: 72px;
  background: var(--mpot-dark-3);
  border: 2px solid var(--mpot-orange-bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}

.mpot-step:hover .mpot-step-num {
  border-color: var(--mpot-orange);
  background: var(--mpot-orange-dim);
}

.mpot-step-num svg {
  width: 26px; height: 26px;
  stroke: var(--mpot-orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mpot-step-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: var(--mpot-orange);
  border-radius: 50%;
  font-family: var(--mpot-font-d);
  font-size: 10px;
  font-weight: 800;
  color: var(--mpot-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mpot-step-title {
  font-family: var(--mpot-font-d);
  font-size: 16px; /* era 14px */
  font-weight: 700;
  color: var(--mpot-white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.mpot-step-desc {
  font-family: var(--mpot-font-b);
  font-size: 14px; /* era 12px */
  color: var(--mpot-gray);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   05. VANTAGENS — CARDS
   ══════════════════════════════════════════════════════════ */
.mpot-vant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.mpot-vant-card {
  background: var(--mpot-white);
  border: 1px solid var(--mpot-border-d);
  border-radius: 16px;
  padding: clamp(22px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.mpot-vant-card.mpot-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s;
}

.mpot-vant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

.mpot-vant-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mpot-orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.mpot-vant-card:hover::after { opacity: 1; }

.mpot-vant-icon {
  width: 48px; height: 48px;
  background: var(--mpot-orange-dim);
  border: 1px solid var(--mpot-orange-bdr);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mpot-vant-icon svg {
  width: 22px; height: 22px;
  stroke: var(--mpot-orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mpot-vant-pct {
  font-family: var(--mpot-font-d);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--mpot-orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.mpot-vant-title {
  font-family: var(--mpot-font-d);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 700;
  color: var(--mpot-dark);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.mpot-vant-desc {
  font-family: var(--mpot-font-b);
  font-size: 13px;
  color: var(--mpot-gray-2);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   06. O QUE ESTÁ INCLUSO — CHECKLIST
   ══════════════════════════════════════════════════════════ */
.mpot-incluso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.mpot-incluso-group {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--mpot-border);
  border-radius: 16px;
  padding: clamp(22px, 2.5vw, 32px);
  opacity: 0;
  transform: translateY(20px);
}

.mpot-incluso-group.mpot-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.mpot-incluso-group-title {
  font-family: var(--mpot-font-b);
  font-weight: 700;
  font-size: 13px; /* era 11px */
  letter-spacing: 1.5px; /* era 2.5px */
  text-transform: uppercase;
  color: var(--mpot-orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mpot-incluso-group-title svg {
  width: 14px; height: 14px;
  stroke: var(--mpot-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mpot-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mpot-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--mpot-font-b);
  font-size: 15px; /* era 13px */
  color: var(--mpot-gray);
  line-height: 1.5;
}

.mpot-check-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--mpot-orange-dim);
  border: 1px solid var(--mpot-orange-bdr);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B1A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ══════════════════════════════════════════════════════════
   07. PARA QUEM É
   ══════════════════════════════════════════════════════════ */
.mpot-perfis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}

.mpot-perfil-card {
  background: var(--mpot-dark-3);
  border: 1px solid var(--mpot-border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s, border-color 0.3s;
}

.mpot-perfil-card.mpot-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s;
}

.mpot-perfil-card:hover {
  border-color: var(--mpot-orange-bdr);
  transform: translateY(-4px);
}

.mpot-perfil-icon {
  width: 52px; height: 52px;
  background: var(--mpot-orange-dim);
  border: 1px solid var(--mpot-orange-bdr);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.mpot-perfil-icon svg {
  width: 24px; height: 24px;
  stroke: var(--mpot-orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mpot-perfil-title {
  font-family: var(--mpot-font-d);
  font-size: 16px; /* era 14px */
  font-weight: 700;
  color: var(--mpot-white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.mpot-perfil-desc {
  font-family: var(--mpot-font-b);
  font-size: 14px; /* era 12px */
  color: var(--mpot-gray);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   08. QUIZ — ORÇAMENTO INTELIGENTE
   ══════════════════════════════════════════════════════════ */
.mpot-quiz-wrapper {
  background: var(--mpot-dark);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--mpot-border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

/* Barra de progresso */
.mpot-quiz-progress-bar {
  height: 3px;
  background: var(--mpot-border);
  position: relative;
}

.mpot-quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mpot-orange), #ff9d5c);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0 2px 2px 0;
}

/* Header do quiz */
.mpot-quiz-header {
  padding: 24px 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mpot-quiz-step-label {
  font-family: var(--mpot-font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mpot-orange);
}

.mpot-quiz-step-dots {
  display: flex;
  gap: 6px;
}

.mpot-quiz-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mpot-border);
  transition: background 0.3s, transform 0.3s;
}

.mpot-quiz-dot.active {
  background: var(--mpot-orange);
  transform: scale(1.3);
}

.mpot-quiz-dot.done {
  background: rgba(255,107,26,0.4);
}

/* Corpo de cada passo */
.mpot-quiz-body {
  padding: 28px 32px 36px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

/* Pergunta */
.mpot-quiz-question {
  font-family: var(--mpot-font-d);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--mpot-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
}

.mpot-quiz-hint {
  font-family: var(--mpot-font-b);
  font-size: 13px;
  color: var(--mpot-gray);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* Opções em cards */
.mpot-quiz-options {
  display: grid;
  gap: 10px;
  flex: 1;
}

.mpot-quiz-options--2 { grid-template-columns: repeat(2, 1fr); }
.mpot-quiz-options--3 { grid-template-columns: repeat(3, 1fr); }
.mpot-quiz-options--4 { grid-template-columns: repeat(4, 1fr); }

.mpot-opt {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--mpot-border);
  border-radius: 12px;
  padding: 18px 16px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.mpot-opt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mpot-orange-dim);
  opacity: 0;
  transition: opacity 0.25s;
}

.mpot-opt:hover {
  border-color: var(--mpot-orange-bdr);
  transform: translateY(-2px);
}

.mpot-opt:hover::before { opacity: 1; }

.mpot-opt.selected {
  border-color: var(--mpot-orange);
  background: var(--mpot-orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--mpot-orange);
}

.mpot-opt.selected::before { opacity: 1; }

.mpot-opt-icon {
  width: 36px; height: 36px;
  background: var(--mpot-orange-dim);
  border: 1px solid var(--mpot-orange-bdr);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; z-index: 1;
  flex-shrink: 0;
}

.mpot-opt-icon svg {
  width: 18px; height: 18px;
  stroke: var(--mpot-orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mpot-opt-title {
  font-family: var(--mpot-font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--mpot-white);
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
  line-height: 1.3;
}

.mpot-opt-sub {
  font-family: var(--mpot-font-b);
  font-size: 11.5px;
  color: var(--mpot-gray);
  line-height: 1.4;
  position: relative; z-index: 1;
}

.mpot-opt-check {
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--mpot-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 1;
}

.mpot-opt.selected .mpot-opt-check {
  background: var(--mpot-orange);
  border-color: var(--mpot-orange);
}

.mpot-opt.selected .mpot-opt-check::after {
  content: '';
  width: 9px; height: 6px;
  border-left: 2px solid var(--mpot-dark);
  border-bottom: 2px solid var(--mpot-dark);
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

/* Input de texto do quiz */
.mpot-quiz-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.mpot-quiz-label {
  font-family: var(--mpot-font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mpot-gray);
}

.mpot-quiz-input {
  font-family: var(--mpot-font-b);
  font-size: 15px;
  color: var(--mpot-white);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--mpot-border);
  border-radius: 10px;
  padding: 13px 18px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mpot-quiz-input::placeholder { color: rgba(160,168,192,0.4); }

.mpot-quiz-input:focus {
  border-color: var(--mpot-orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.10);
}

/* Footer do quiz */
.mpot-quiz-footer {
  padding: 0 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mpot-quiz-back {
  font-family: var(--mpot-font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--mpot-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.mpot-quiz-back:hover { color: var(--mpot-white); }
.mpot-quiz-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

.mpot-quiz-next {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mpot-font-b);
  font-size: 14px;
  font-weight: 700;
  color: var(--mpot-dark);
  background: var(--mpot-orange);
  border: 2px solid var(--mpot-orange);
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.mpot-quiz-next:hover {
  background: transparent;
  color: var(--mpot-orange);
}

.mpot-quiz-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mpot-quiz-next svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* Passo de resumo */
.mpot-quiz-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mpot-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--mpot-border);
  border-radius: 10px;
  padding: 12px 16px;
}

.mpot-summary-label {
  font-family: var(--mpot-font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mpot-gray);
  min-width: 130px;
  flex-shrink: 0;
}

.mpot-summary-value {
  font-family: var(--mpot-font-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--mpot-white);
}

.mpot-summary-dot {
  width: 6px; height: 6px;
  background: var(--mpot-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Passo de transição entre steps */
.mpot-quiz-step {
  display: none;
}

.mpot-quiz-step.active {
  display: flex;
  flex-direction: column;
  animation: mpot-slide-in 0.35s cubic-bezier(0.16,1,0.3,1);
}

@keyframes mpot-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════════════════
   09. CTA FINAL
   ══════════════════════════════════════════════════════════ */
.mpot-cta-final {
  background: var(--mpot-dark);
  border-radius: 20px;
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mpot-cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mpot-orange), transparent);
}

.mpot-cta-final::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,26,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.mpot-cta-final-inner { position: relative; z-index: 1; }

.mpot-cta-final-title {
  font-family: var(--mpot-font-d);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--mpot-white);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.mpot-cta-final-title em { color: var(--mpot-orange); font-style: normal; }

.mpot-cta-final-sub {
  font-family: var(--mpot-font-b);
  font-size: 15px;
  color: var(--mpot-gray);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}

.mpot-cta-final-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mpot-steps { grid-template-columns: repeat(3, 1fr); }
  .mpot-steps::before { display: none; }
  .mpot-perfis-grid { grid-template-columns: repeat(2, 1fr); }
  .mpot-vant-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .mpot-hero-inner { grid-template-columns: 1fr; }
  .mpot-hero-stats { grid-template-columns: repeat(4, 1fr); }
  .mpot-stat-divider { display: none; }
  .mpot-conceito-grid { grid-template-columns: 1fr; }
  .mpot-incluso-grid { grid-template-columns: 1fr; }
  .mpot-quiz-options--4 { grid-template-columns: repeat(2, 1fr); }
  .mpot-quiz-options--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .mpot-steps { grid-template-columns: repeat(2, 1fr); }
  .mpot-vant-grid { grid-template-columns: 1fr; }
  .mpot-perfis-grid { grid-template-columns: repeat(2, 1fr); }
  .mpot-conceito-comparison { grid-template-columns: 1fr; }
  .mpot-quiz-options--2 { grid-template-columns: 1fr; }
  .mpot-quiz-options--4 { grid-template-columns: 1fr; }
  .mpot-quiz-body { padding: 20px 20px 28px; }
  .mpot-quiz-header { padding: 18px 20px 0; }
  .mpot-quiz-footer { padding: 0 20px 22px; }
  .mpot-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .mpot-hero-strip { gap: 12px; }
  .mpot-strip-sep { display: none; }
  .mpot-cta-final-btns { flex-direction: column; align-items: center; }
  .mpot-summary-label { min-width: 100px; }
}




.mpot-hero-sub,
.mpot-conceito-text p,
.mpot-vant-desc {
  text-align: justify !important;
}