/* MCV 2026-1 — Método Conteúdo para Vendas — High-conversion redesign */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: #0B0F1A;
  color: #E2E8F0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mcv-wrap { min-height: 100vh; }
.mcv-wrap.sticky-visible { padding-bottom: 5rem; }

/* Container */
.mcv-container { max-width: 52rem; margin-left: auto; margin-right: auto; padding: 0 1.5rem; }

/* Sections */
.mcv-section { padding: 4rem 0; }
@media (min-width: 640px) { .mcv-section { padding: 5.5rem 0; } }

.mcv-section--hero {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background: #0B0F1A;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
@media (min-width: 640px) { .mcv-section--hero { padding-top: 4.5rem; padding-bottom: 5rem; } }

.mcv-section--dark { background: #0B0F1A; }
.mcv-section--darker { background: #070A12; }
.mcv-section--accent-glow {
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ─── Typography ─── */
.mcv-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F59E0B;
  margin-bottom: 1.5rem;
}
.mcv-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: #D97706;
}

.mcv-hero-title {
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.75rem;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .mcv-hero-title { font-size: 2.75rem; } }
@media (min-width: 768px) { .mcv-hero-title { font-size: 3rem; } }

.mcv-hero-title em {
  font-style: normal;
  color: #F59E0B;
}

.mcv-hero-sub {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #94A3B8;
  margin: 0 0 1rem;
}
@media (min-width: 640px) { .mcv-hero-sub { font-size: 1.0625rem; } }

.mcv-hero-sub strong { color: #fff; font-weight: 700; }

.mcv-h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
@media (min-width: 640px) { .mcv-h2 { font-size: 2rem; } }

.mcv-h2 em { font-style: normal; color: #F59E0B; }

.mcv-h2-sub {
  font-size: 1.0625rem;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0 0 2.5rem;
  max-width: 40rem;
}

.mcv-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #94A3B8;
  margin: 0 0 1rem;
}
@media (min-width: 640px) { .mcv-body { font-size: 1.0625rem; } }

.mcv-body strong { color: #E2E8F0; font-weight: 700; }
.mcv-highlight { color: #F59E0B; font-weight: 700; }

/* ─── Proof image ─── */
.mcv-proof-img {
  margin: 2rem 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.mcv-proof-img img { width: 100%; height: auto; display: block; }
.mcv-proof-caption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94A3B8;
  margin: 0;
}

/* ─── Problem list ─── */
.mcv-problem-list {
  margin: 2rem 0;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 3px;
  padding: 1.5rem;
}
.mcv-problem-intro { font-weight: 700; color: #FCA5A5; margin: 0 0 1rem; font-size: 1rem; }
.mcv-ol { list-style: none; padding: 0; margin: 0; counter-reset: item; }
.mcv-ol li {
  counter-increment: item;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #CBD5E1;
  padding-left: 1.75rem;
  text-indent: -1.75rem;
}
.mcv-ol li:last-child { margin-bottom: 0; }
.mcv-ol li::before {
  content: counter(item) ") ";
  font-weight: 800;
  color: #EF4444;
}

/* ─── Segment tags ─── */
.mcv-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 2rem;
}
.mcv-segment-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  color: #FBBF24;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: 2px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ─── CTA Buttons ─── */
.mcv-btn {
  display: inline-block;
  background: #D97706;
  color: #0B0F1A;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1rem 2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  text-decoration: none;
  font-size: 0.9375rem;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
}
.mcv-btn:hover {
  background: #B45309;
  box-shadow: 0 2px 12px rgba(217, 119, 6, 0.3);
}
.mcv-btn:active { transform: translateY(0); }
.mcv-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.4); }

@keyframes mcv-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25); }
  50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.5), 0 0 0 8px rgba(245, 158, 11, 0); }
}
.mcv-btn--pulse { animation: mcv-pulse 3s ease-in-out infinite; }
.mcv-btn--pulse:hover { animation: none; }

.mcv-btn--hero {
  width: 100%;
  max-width: 28rem;
  font-size: 1.0625rem;
  padding: 1.25rem 2.5rem;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .mcv-btn--hero { width: auto; max-width: none; padding: 1.375rem 3rem; font-size: 1.125rem; }
}
.mcv-btn--sticky {
  min-height: 44px;
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  white-space: nowrap;
}
@media (min-width: 640px) { .mcv-btn--sticky { font-size: 0.875rem; padding: 0.75rem 1.5rem; } }

/* CTA wrap */
.mcv-cta-wrap { text-align: center; margin-top: 2.5rem; }
.mcv-trust { color: #64748B; font-size: 0.8125rem; margin-top: 0.75rem; }
.mcv-trust-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 500;
}
.mcv-trust-icons span { display: flex; align-items: center; gap: 0.375rem; }

/* ─── Metric bar ─── */
.mcv-metric-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  margin: 3rem 0 0;
}
.mcv-metric {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(255,255,255,0.02);
}
.mcv-metric-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #F59E0B;
  line-height: 1;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) { .mcv-metric-num { font-size: 2rem; } }
.mcv-metric-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748B;
  font-weight: 600;
}

/* ─── Pillars ─── */
.mcv-pillars {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .mcv-pillars { grid-template-columns: repeat(2, 1fr); } }
.mcv-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  padding: 1.5rem;
  text-align: left;
  transition: border-color 0.3s;
  position: relative;
}
.mcv-pillar:hover { border-color: rgba(245,158,11,0.25); }
@media (min-width: 640px) { .mcv-pillar--wide { grid-column: 1 / -1; } }
.mcv-pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 2px;
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.mcv-pillar-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mcv-pillar-text { color: #94A3B8; font-size: 0.9375rem; line-height: 1.6; margin: 0; }

/* ─── Bonus block ─── */
.mcv-bonus-block {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.mcv-bonus-label { font-weight: 800; color: #FBBF24; margin: 0 0 0.5rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; }
.mcv-bonus-text { color: #CBD5E1; font-size: 0.9375rem; line-height: 1.6; margin: 0; }

/* ─── Warning box ─── */
.mcv-warning-box {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
}
.mcv-warning-text { color: #FCA5A5; font-size: 0.9375rem; line-height: 1.6; margin: 0; }

/* ─── Cases grid ─── */
.mcv-cases-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .mcv-cases-grid { grid-template-columns: repeat(2, 1fr); } }
.mcv-case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  padding: 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.mcv-case-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.mcv-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.mcv-case--b2c::before { background: #10B981; }
.mcv-case--b2b::before { background: #3B82F6; }
.mcv-case--b2b2c::before { background: #8B5CF6; }
.mcv-case-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.mcv-case--b2c .mcv-case-tag { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.mcv-case--b2b .mcv-case-tag { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
.mcv-case--b2b2c .mcv-case-tag { background: rgba(139, 92, 246, 0.15); color: #A78BFA; }
.mcv-case-title { font-size: 0.9375rem; font-weight: 600; color: #E2E8F0; margin: 0 0 0.375rem; }
.mcv-case-detail { font-size: 0.8125rem; color: #64748B; margin: 0 0 0.75rem; }
.mcv-case-result {
  font-size: 2rem;
  font-weight: 900;
  color: #F59E0B;
  line-height: 1.1;
  margin: 0.5rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) { .mcv-case-result { font-size: 2.25rem; } }
.mcv-case-label { font-size: 0.6875rem; font-weight: 600; color: #64748B; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.125rem; }

/* ─── Author block ─── */
.mcv-author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}
.mcv-author-avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.4);
}
@media (min-width: 640px) { .mcv-author-avatar { width: 6.5rem; height: 6.5rem; } }
.mcv-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(50% - 5px) 15%;
  transform: scale(1.3);
}
.mcv-author-bio { color: #94A3B8; font-size: 0.9375rem; line-height: 1.7; max-width: 36rem; margin: 0; }
.mcv-author-bio strong { color: #FBBF24; }

/* ─── FAQ Accordion ─── */
.mcv-faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mcv-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  color: #E2E8F0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.mcv-faq-btn:hover { color: #F59E0B; }
@media (min-width: 640px) { .mcv-faq-btn { font-size: 1.0625rem; } }
.mcv-faq-btn .mcv-faq-plus { margin-left: 1rem; color: #F59E0B; font-size: 1.5rem; flex-shrink: 0; display: inline-block; min-width: 1.5rem; text-align: right; transition: transform 0.2s; }
.mcv-faq-answer { padding-bottom: 1.25rem; color: #94A3B8; line-height: 1.7; display: none; font-size: 0.9375rem; }
.mcv-faq-item.is-open .mcv-faq-answer { display: block; }
.mcv-faq-item.is-open .mcv-faq-plus::after { content: '−'; }
.mcv-faq-item:not(.is-open) .mcv-faq-plus::after { content: '+'; }
.mcv-faq-item.is-open .mcv-faq-plus { transform: rotate(90deg); }

/* ─── Footer ─── */
.mcv-footer {
  background: #070A12;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0;
  text-align: center;
  color: #475569;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.mcv-footer p { margin: 0 0 1rem; }
.mcv-link-privacy { text-decoration: underline; cursor: pointer; background: none; border: none; color: inherit; font-size: inherit; transition: color 0.2s; }
.mcv-link-privacy:hover { color: #94A3B8; }

/* ─── Sticky bar ─── */
.mcv-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: #0B0F1A;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mcv-sticky.is-visible {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.mcv-sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .mcv-sticky-inner { flex-direction: row; justify-content: center; gap: 1.5rem; }
}
.mcv-sticky-text {
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.8125rem;
  white-space: nowrap;
}
@media (min-width: 640px) { .mcv-sticky-text { font-size: 0.875rem; } }

/* ─── Modal ─── */
.mcv-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.mcv-modal-overlay.is-open { display: flex; }
.mcv-modal {
  background: #1E293B;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  max-width: 42rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
  color: #CBD5E1;
}
@media (min-width: 640px) { .mcv-modal { padding: 2rem; } }
.mcv-modal .mcv-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #64748B;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.mcv-modal .mcv-modal-close:hover { color: #fff; }
.mcv-modal h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; }
.mcv-modal-content { color: #94A3B8; font-size: 0.875rem; line-height: 1.7; }
.mcv-modal-content p { margin-bottom: 1rem; }
.mcv-modal-content h3 { color: #E2E8F0; font-weight: 600; font-size: 1rem; margin-top: 1rem; margin-bottom: 0.5rem; }
.mcv-modal-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }

/* ─── Exit Popup ─── */
.mcv-popup-exit {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.mcv-popup-exit.is-open { display: flex; }
.mcv-popup-exit__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  
}
.mcv-popup-exit__box {
  position: relative;
  width: 100%;
  max-width: 28rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: #1E293B;
  border: 2px solid #F59E0B;
  border-radius: 3px;
  padding: 1.5rem 1.25rem;
  margin: auto;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}
@media (min-width: 640px) { .mcv-popup-exit__box { padding: 2rem; } }
.mcv-popup-exit__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #64748B;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.25rem;
}
.mcv-popup-exit__close:hover { color: #fff; }
.mcv-popup-exit__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 1rem;
  padding-right: 2rem;
}
@media (min-width: 640px) { .mcv-popup-exit__title { font-size: 1.375rem; } }
.mcv-popup-exit__sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: #94A3B8;
  margin: 0 0 0.5rem;
}
.mcv-popup-exit__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.mcv-popup-exit__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #CBD5E1;
  line-height: 1.5;
}
.mcv-popup-exit__list li:last-child { margin-bottom: 0; }
.mcv-popup-exit__check { flex-shrink: 0; width: 1rem; height: 1rem; margin-top: 0.2rem; color: #F59E0B; display: inline-block; position: relative; }
.mcv-popup-exit__check::before { content: ''; position: absolute; left: 0.2rem; top: 0; width: 0.35rem; height: 0.6rem; border: solid #F59E0B; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.mcv-popup-exit__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mcv-popup-exit__cta {
  width: 100%;
  min-height: 48px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}
.mcv-popup-exit__secondary {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: #64748B;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: color 0.2s, border-color 0.2s;
}
.mcv-popup-exit__secondary:hover { color: #E2E8F0; border-color: rgba(255,255,255,0.2); }

/* ─── Divider ─── */
.mcv-divider {
  text-align: center;
  margin: 0;
  padding: 2rem 0;
  background: #0B0F1A;
}
.mcv-divider span {
  display: inline-block;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F59E0B, transparent);
  border-radius: 2px;
}

/* ─── Para quem é / não é ─── */
.mcv-two-cols {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .mcv-two-cols { grid-template-columns: 1fr 1fr; } }
.mcv-col-yes, .mcv-col-no {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  padding: 1.5rem;
}
.mcv-col-label {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}
.mcv-col-label--yes { color: #34D399; }
.mcv-col-label--no { color: #F87171; }
.mcv-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mcv-check-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 0.625rem;
  padding-left: 1.5rem;
  position: relative;
}
.mcv-check-list li:last-child { margin-bottom: 0; }
.mcv-check-list--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34D399;
  font-weight: 700;
}
.mcv-check-list--no li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #F87171;
  font-weight: 700;
}

/* ─── Guarantee ─── */
.mcv-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .mcv-guarantee { flex-direction: row; text-align: left; gap: 2rem; }
}
.mcv-guarantee-badge {
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #F59E0B;
  border: 3px solid #F59E0B;
  border-radius: 3px;
  position: relative;
}
.mcv-guarantee-badge::after {
  content: 'DIAS';
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0B0F1A;
  background: #F59E0B;
  padding: 0.125rem 0.375rem;
  border-radius: 1px;
}
.mcv-guarantee-content { flex: 1; }

/* ─── Spacing utilities ─── */
.mcv-mt-6 { margin-top: 1.5rem; }
.mcv-mt-10 { margin-top: 2.5rem; }
.mcv-mb-8 { margin-bottom: 2rem; }
