/* ============================================================
   Matrix Print — Impressora de Cartazes v3
   Prefixo: mpc-
   Cores: amarelo #FFD600 + vermelho #E31E24
   ============================================================ */

:root {
  --mpc-yellow: #FFD600;
  --mpc-red:    #E31E24;
  --mpc-dark:   #090b12;
  --mpc-white:  #ffffff;
}

/* SEÇÃO */
.mpc-section {
  position: relative;
  background: #090b12;
  overflow: hidden;
}

/* FAIXA SUPERIOR — amarela com texto correndo */
.mpc-top-stripe {
  background: var(--mpc-yellow);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}

.mpc-stripe-text {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: mpc-marquee 25s linear infinite;
  will-change: transform;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mpc-red);
  text-transform: uppercase;
  white-space: nowrap;
}

.mpc-stripe-dot {
  color: var(--mpc-red);
  opacity: 0.5;
  font-size: 10px;
}

@keyframes mpc-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FAIXA INFERIOR — vermelha */
.mpc-bottom-stripe {
  background: var(--mpc-red);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}

.mpc-bottom-stripe .mpc-stripe-text {
  color: var(--mpc-yellow);
  animation-direction: reverse;
}

.mpc-bottom-stripe .mpc-stripe-dot {
  color: var(--mpc-yellow);
}

/* CONTAINER */
.mpc-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 1;
}

/* BLOCO PRINCIPAL */
.mpc-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: 48px;
}

@media (max-width: 860px) {
  .mpc-main { grid-template-columns: 1fr; }
}

/* IMAGEM */
.mpc-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
aspect-ratio: unset;
height: 520px;
  border: 3px solid var(--mpc-yellow);
  box-shadow: 8px 8px 0 var(--mpc-red);
}

.mpc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mpc-img-wrap:hover .mpc-img {
  transform: scale(1.04);
}

.mpc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,10,0,0.7) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Badge sobre a imagem */
.mpc-img-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--mpc-yellow);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 4px 4px 0 var(--mpc-red);
}

.mpc-img-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--mpc-red);
  line-height: 1;
}

.mpc-img-badge-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--mpc-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
}

/* Tag no bottom da imagem */
.mpc-img-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--mpc-yellow);
  background: rgba(26,10,0,0.8);
  border: 1px solid rgba(255,214,0,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  letter-spacing: 0.5px;
}

/* CONTEÚDO */
.mpc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mpc-yellow);
  background: rgba(255,214,0,0.1);
  border: 1px solid rgba(255,214,0,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.mpc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 700;
  color: var(--mpc-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.mpc-title em {
  font-style: normal;
  color: var(--mpc-yellow);
  -webkit-text-stroke: 0px;
}

.mpc-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* CHECKLIST */
.mpc-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.mpc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.mpc-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mpc-yellow);
  color: var(--mpc-red);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA */
.mpc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mpc-red);
  color: var(--mpc-white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--mpc-red);
  box-shadow: 4px 4px 0 var(--mpc-yellow);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  display: inline-flex;
}

.mpc-cta:hover {
  background: var(--mpc-yellow);
  color: var(--mpc-red);
  border-color: var(--mpc-yellow);
  box-shadow: 4px 4px 0 var(--mpc-red);
  transform: translate(-2px, -2px);
}

.mpc-cta-note {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* STATS BAR */
.mpc-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mpc-yellow);
  border-radius: 14px;
  padding: 24px 36px;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 6px 6px 0 var(--mpc-red);
}

.mpc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.mpc-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--mpc-red);
  line-height: 1;
}

.mpc-stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(26,10,0,0.65);
  max-width: 160px;
  line-height: 1.3;
}

.mpc-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(227,30,36,0.3);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mpc-stats-bar {
    justify-content: center;
    padding: 20px 24px;
    gap: 24px;
  }
  .mpc-stat-div { display: none; }
  .mpc-stat-item { min-width: calc(50% - 12px); }
}