/* ============================================
   MOSCOU PERDEU — Site Brutal
   ============================================ */

:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1d1d1d;
  --paper: #f3ead6;
  --paper-2: #ffe9b0;
  --cyan: #1dc5ce;
  --cyan-2: #0fa3ab;
  --yellow: #ffc829;
  --yellow-2: #ffb000;
  --red: #ff3b3b;
  --green: #25d366;
  --white: #ffffff;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ======= TYPE ======= */
.display { font-family: 'Lilita One', 'Bowlby One', sans-serif; font-weight: 400; line-height: 0.95; letter-spacing: -0.01em; }
.brutal  { font-family: 'Bungee', 'Anton', sans-serif; font-weight: 400; line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; }
.mono    { font-family: 'JetBrains Mono', monospace; }

.h-stroke {
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
}

/* ======= UTILS ======= */
.halftone-bg {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.12) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}
.halftone-dark {
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.18) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}
.halftone-cyan {
  background-image: radial-gradient(circle at 1px 1px, var(--cyan) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
}
.halftone-yellow {
  background-image: radial-gradient(circle at 1px 1px, var(--yellow) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ======= MARQUEE ======= */
.marquee {
  background: var(--yellow);
  color: var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.marquee-track {
  display: flex;
  gap: 48px;
  padding: 12px 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.marquee-track > span { display: inline-flex; gap: 48px; align-items: center; }
.marquee-track > span > * { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track svg { width: 18px; height: 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======= NAV ======= */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  border-bottom: 4px solid var(--ink);
  box-shadow: 0 6px 0 var(--cyan);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Lilita One', sans-serif;
  font-size: 26px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-logo .logo-mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-logo .logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(2px 2px 0 var(--ink));
}
.nav-logo .brand-name { color: var(--yellow); }

.foot-about .nav-logo .logo-mark { width: 64px; height: 64px; }
.foot-about .nav-logo .brand-name { color: var(--yellow); font-size: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Bungee', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 4px;
  transition: all 0.15s;
}
.nav-links a:hover { background: var(--cyan); color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  border: 3px solid var(--ink);
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.nav-cta:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }

/* ======= HERO ======= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(29,197,206,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255,200,41,0.12), transparent 55%),
    var(--ink);
  padding: 80px 0 120px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-left { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--ink);
  padding: 8px 16px;
  border: 3px solid var(--ink);
  font-family: 'Bungee', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--ink);
  animation: pulse 1.2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title .l1 { color: var(--white); display: block; }
.hero-title .l2 {
  color: var(--yellow);
  display: inline-block;
  transform: rotate(-2deg);
  text-shadow: 6px 6px 0 var(--cyan-2), 6px 6px 0 1px var(--ink);
  margin: 8px 0;
}
.hero-title .l3 {
  color: var(--cyan);
  display: block;
  font-family: 'Lilita One', sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.hero-title .l3 .stamp {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  padding: 0 18px 6px;
  border: 4px solid var(--ink);
  transform: rotate(-1.5deg) translateY(-6px);
  box-shadow: 6px 6px 0 var(--yellow);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-sub b { color: var(--yellow); font-weight: 800; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.btn-brutal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  border: 4px solid var(--ink);
  font-family: 'Bungee', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  background: var(--yellow);
  color: var(--ink);
}
.btn-brutal:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.btn-brutal:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.btn-brutal.green { background: var(--green); color: var(--white); }
.btn-brutal.cyan { background: var(--cyan); color: var(--ink); }
.btn-brutal.white { background: var(--white); color: var(--ink); }
.btn-brutal svg { width: 22px; height: 22px; }
.btn-brutal small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.7;
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat .n {
  font-family: 'Bungee', sans-serif;
  font-size: 28px;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat .l { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-sep { width: 2px; height: 32px; background: rgba(255,255,255,0.18); }

/* hero right — mascot stage */
.hero-right {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.starburst {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: spinSlow 30s linear infinite;
}
.starburst svg { width: 105%; height: 105%; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.mascot-stage {
  position: relative;
  width: 88%;
  aspect-ratio: 1/1;
  z-index: 2;
}
.mascot-stage img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(8px 8px 0 var(--ink));
}

.hero-sticker {
  position: absolute;
  background: var(--red);
  color: var(--white);
  border: 4px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  z-index: 5;
  animation: wiggle 2.5s ease-in-out infinite;
}
.hero-sticker.s1 { width: 140px; height: 140px; top: 2%; left: -2%; transform: rotate(-12deg); font-size: 14px; line-height: 1.1; padding: 12px; }
.hero-sticker.s1 .big { font-size: 28px; color: var(--yellow); display: block; }
.hero-sticker.s2 {
  width: 130px; height: 130px;
  bottom: 4%; right: -4%;
  transform: rotate(8deg);
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.1;
  padding: 10px;
}
.hero-sticker.s2 .big { font-size: 30px; display: block; }

@keyframes wiggle {
  0%,100% { transform: var(--rot, rotate(-12deg)) translateY(0); }
  50% { transform: var(--rot, rotate(-12deg)) translateY(-8px); }
}

/* ======= STATS RIBBON ======= */
.ribbon {
  background: var(--cyan);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.ribbon::before, .ribbon::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.18) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  pointer-events: none;
}
.ribbon-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.ribbon-item { text-align: center; }
.ribbon-item .n {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  display: block;
  -webkit-text-stroke: 2px var(--ink);
  color: var(--white);
}
.ribbon-item .n .plus { color: var(--yellow); }
.ribbon-item .l { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }

/* ======= SECTION ======= */
section { position: relative; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  padding-top: 96px;
}
.section-head-l { max-width: 720px; }
.section-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  border: 3px solid var(--ink);
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  transform: rotate(-1.5deg);
}
.section-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
}
.section-title .accent { color: var(--cyan); }
.section-title .y { color: var(--yellow); }
.section-sub { color: rgba(255,255,255,0.7); margin-top: 14px; font-size: 17px; max-width: 540px; }

.section-head-r { display: flex; align-items: center; gap: 14px; }
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 3px solid var(--white);
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.15s;
}
.section-link:hover { background: var(--white); color: var(--ink); }

/* ======= MOSCA DA VEZ — featured deal ======= */
.mosca-da-vez {
  background: var(--yellow);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
}
.mosca-da-vez::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.12) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  pointer-events: none;
}
.mosca-da-vez .container { position: relative; z-index: 2; }
.mdv-head { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.mdv-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 18px;
  border: 3px solid var(--ink);
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
.mdv-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); animation: pulse 1.2s infinite; }
.mdv-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  text-transform: uppercase;
  line-height: 0.95;
}

.mdv-card {
  background: var(--white);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.mdv-image {
  background: var(--cyan);
  border-right: 4px solid var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  min-height: 420px;
  padding: 32px;
}
.mdv-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.18) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
}
.mdv-image svg.product { width: 86%; max-width: 380px; position: relative; z-index: 2; filter: drop-shadow(8px 8px 0 rgba(0,0,0,0.18)); }
.mdv-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--red);
  color: var(--white);
  border: 4px solid var(--ink);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  transform: rotate(-15deg);
  z-index: 3;
  box-shadow: var(--shadow);
}
.mdv-badge .big { font-size: 36px; display: block; margin-bottom: 4px; color: var(--yellow); }

.mdv-info { padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.mdv-cat {
  font-family: 'Bungee', sans-serif;
  font-size: 11px;
  color: var(--cyan-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mdv-name {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  color: var(--ink);
}
.mdv-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #555;
}
.mdv-store .badge { background: var(--ink); color: var(--white); padding: 4px 10px; border-radius: 3px; font-family: 'Bungee', sans-serif; font-size: 11px; }

.mdv-prices {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 3px dashed var(--ink);
  border-bottom: 3px dashed var(--ink);
}
.mdv-prices .old {
  text-decoration: line-through;
  color: #777;
  font-size: 22px;
  font-weight: 700;
}
.mdv-prices .new {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ink);
  line-height: 1;
}
.mdv-prices .new sup { font-size: 0.5em; }

.mdv-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.countdown {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}
.countdown-label {
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink);
}
.countdown-blocks { display: flex; gap: 6px; }
.cd-block {
  background: var(--ink);
  color: var(--yellow);
  border-radius: 4px;
  padding: 8px 10px;
  font-family: 'Bungee', sans-serif;
  font-size: 22px;
  min-width: 48px;
  text-align: center;
  position: relative;
}
.cd-block::after {
  content: attr(data-label);
  display: block;
  font-size: 8px;
  color: var(--cyan);
  margin-top: 2px;
  letter-spacing: 0.1em;
}

/* ======= TWO PORTALS — Geral vs Suplementos ======= */
.portals { padding-bottom: 96px; }
.portals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.portal {
  position: relative;
  border: 4px solid var(--ink);
  padding: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.portal:hover { transform: translate(-4px,-4px); box-shadow: 14px 14px 0 var(--ink); }
.portal.geral { background: var(--cyan); color: var(--ink); }
.portal.fit { background: var(--ink); color: var(--white); border-color: var(--yellow); }
.portal.fit::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--yellow) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.18;
  pointer-events: none;
}
.portal-num {
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
  width: max-content;
}
.portal.fit .portal-num { background: var(--yellow); color: var(--ink); }

.portal-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.portal.fit .portal-title .accent { color: var(--yellow); }
.portal.geral .portal-title .accent { color: var(--white); text-shadow: 4px 4px 0 var(--ink); }

.portal-desc { font-size: 16px; margin-bottom: 28px; max-width: 460px; }
.portal.fit .portal-desc { color: rgba(255,255,255,0.78); }
.portal.geral .portal-desc { color: rgba(0,0,0,0.78); }

.portal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.portal-tag {
  padding: 6px 12px;
  border: 2px solid currentColor;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portal-foot { margin-top: auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.portal-members {
  display: flex;
  align-items: center;
}
.portal-members .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  margin-left: -10px;
  background: var(--white);
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  color: var(--ink);
}
.portal-members .av:first-child { margin-left: 0; }
.portal-members .more {
  background: var(--ink) !important; color: var(--yellow) !important;
}
.portal.fit .portal-members .av { border-color: var(--yellow); }

.portal-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border: 4px solid var(--ink);
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.portal-cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }

.portal-decor {
  position: absolute;
  pointer-events: none;
}
.portal.geral .portal-decor { right: -40px; top: -40px; width: 260px; opacity: 0.4; }
.portal.fit .portal-decor.flex {
  right: -50px; bottom: -50px;
  width: 360px;
  opacity: 0.6;
}

/* ======= OFERTAS GRID ======= */
.ofertas { padding-bottom: 96px; }
.ofertas-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 10px 18px;
  border: 3px solid var(--white);
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.15s;
}
.filter-chip.active { background: var(--yellow); border-color: var(--yellow); color: var(--ink); box-shadow: var(--shadow-sm); }
.filter-chip:hover { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }

.ofertas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.oferta {
  background: var(--white);
  color: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.oferta:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }

.oferta-img {
  aspect-ratio: 1/1;
  background: var(--paper);
  border-bottom: 4px solid var(--ink);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.oferta-img::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.12) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
}
.oferta-img svg.product { width: 70%; max-width: 200px; position: relative; z-index: 2; filter: drop-shadow(5px 5px 0 rgba(0,0,0,0.16)); }

.oferta-disc {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--red);
  color: var(--white);
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  padding: 6px 10px;
  border: 3px solid var(--ink);
  transform: rotate(6deg);
  z-index: 3;
}
.oferta-lightning {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  padding: 4px 8px;
  font-family: 'Bungee', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
}
.oferta-lightning svg { width: 12px; height: 12px; }

.oferta-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.oferta-cat { font-family: 'Bungee', sans-serif; font-size: 10px; color: var(--cyan-2); text-transform: uppercase; letter-spacing: 0.08em; }
.oferta-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px; line-height: 1.3; min-height: 36px; }
.oferta-store { font-size: 11px; color: #777; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; display: flex; align-items: center; gap: 6px; }
.oferta-store::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.oferta-prices { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.oferta-prices .old { text-decoration: line-through; color: #999; font-size: 13px; font-weight: 600; }
.oferta-prices .new { font-family: 'Bungee', sans-serif; font-size: 22px; line-height: 1; color: var(--ink); }
.oferta-foot { margin-top: auto; display: flex; gap: 6px; }
.oferta-btn {
  flex: 1;
  background: var(--ink);
  color: var(--white);
  padding: 10px 12px;
  font-family: 'Bungee', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.15s;
}
.oferta-btn:hover { background: var(--cyan-2); }
.oferta-btn.alt { flex: 0 0 auto; background: var(--green); padding: 10px 12px; }

/* ======= CATEGORIAS ======= */
.categorias { padding-bottom: 96px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--ink-2);
  border: 3px solid var(--white);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.15s;
  cursor: pointer;
  position: relative;
}
.cat-card:hover { background: var(--yellow); color: var(--ink); border-color: var(--ink); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.cat-card:hover .cat-icon { background: var(--ink); color: var(--yellow); }
.cat-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.cat-icon svg { width: 30px; height: 30px; }
.cat-name { font-family: 'Bungee', sans-serif; font-size: 12px; text-transform: uppercase; }
.cat-count { font-size: 11px; opacity: 0.65; font-weight: 700; }

.cat-card.cat-featured {
  background: var(--green);
  border-color: var(--ink);
  color: var(--white);
}
.cat-card.cat-featured:hover { background: var(--ink); color: var(--green); border-color: var(--green); }
.cat-card.cat-featured .cat-icon.cat-wa { background: var(--ink); color: var(--green); border-color: var(--white); box-shadow: 4px 4px 0 var(--ink); }
.cat-card.cat-featured:hover .cat-icon.cat-wa { background: var(--green); color: var(--ink); border-color: var(--ink); }
.cat-card.cat-featured .cat-count { opacity: 0.85; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 10px; }

/* ======= FITNESS SECTION ======= */
.fitness {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,200,41,0.15), transparent 50%),
    var(--ink);
  border-top: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.fitness::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--cyan) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.12;
  pointer-events: none;
}
.fitness-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.fitness-flex {
  position: relative;
  min-height: 540px;
  display: grid; place-items: center;
}
.fitness-flex img {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(10px 10px 0 var(--cyan-2));
}
.fitness-burst {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  z-index: 0;
}
.fitness-burst svg { width: 100%; height: 100%; }

.fitness-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(44px, 5.6vw, 84px);
  text-transform: uppercase;
  line-height: 0.94;
  margin-bottom: 24px;
}
.fitness-title .l1 { color: var(--white); display: block; }
.fitness-title .l2 { color: var(--yellow); display: block; transform: rotate(-1.5deg); margin: 8px 0; }
.fitness-title .l3 { color: var(--cyan); display: block; font-family: 'Lilita One', sans-serif; text-transform: none; }

.fitness-list { display: grid; gap: 14px; margin-top: 28px; margin-bottom: 32px; }
.fitness-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--ink-2);
  border: 3px solid var(--white);
  font-weight: 700;
}
.fitness-item .ic {
  width: 36px; height: 36px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fitness-item .ic svg { width: 18px; height: 18px; }
.fitness-item .txt { font-size: 15px; color: var(--white); }
.fitness-item .pct {
  margin-left: auto;
  font-family: 'Bungee', sans-serif;
  color: var(--yellow);
  font-size: 16px;
}

/* ======= CORRIDA SECTION ======= */
.corrida {
  background:
    radial-gradient(ellipse at 25% 70%, rgba(29,197,206,0.18), transparent 50%),
    var(--ink);
  border-top: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.corrida::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 80px,
    rgba(255,255,255,0.04) 80px 82px
  );
  pointer-events: none;
}
.corrida::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--yellow) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.1;
  pointer-events: none;
}
.corrida-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.corrida-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(44px, 5.6vw, 84px);
  text-transform: uppercase;
  line-height: 0.94;
  margin-bottom: 24px;
}
.corrida-title .l1 { color: var(--white); display: block; }
.corrida-title .l2 { color: var(--cyan); display: block; transform: rotate(-1.5deg); margin: 8px 0;
  text-shadow: 5px 5px 0 var(--cyan-2); }
.corrida-title .l3 { color: var(--yellow); display: block; font-family: 'Lilita One', sans-serif; text-transform: none; }

.corrida-illust {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.corrida-illust .burst {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.corrida-illust .burst svg { width: 100%; height: 100%; }
.corrida-illust .scene { position: relative; width: 90%; z-index: 2; filter: drop-shadow(10px 10px 0 var(--ink)); }

.corrida-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.cp-card {
  background: var(--ink-2);
  border: 3px solid var(--white);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
}
.cp-card .ic {
  width: 44px; height: 44px;
  background: var(--cyan);
  color: var(--ink);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cp-card .ic svg { width: 22px; height: 22px; }
.cp-card .label { font-size: 13px; font-weight: 800; line-height: 1.2; }
.cp-card .sublabel { font-size: 10px; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-top: 2px; display: block; }
.cp-card .tag-disc {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: 'Bungee', sans-serif;
  font-size: 11px;
  padding: 3px 7px;
  transform: rotate(8deg);
}

.corrida-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--ink);
  padding: 8px 16px;
  border: 3px solid var(--ink);
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 18px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.corrida-stamp .soon {
  background: var(--ink);
  color: var(--yellow);
  padding: 2px 8px;
  font-size: 10px;
}

/* ======= COMO FUNCIONA ======= */
.como { padding-bottom: 96px; }
.como-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  background: var(--white);
  color: var(--ink);
  border: 4px solid var(--ink);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow);
}
.step:nth-child(2) { background: var(--cyan); transform: translateY(-12px); }
.step:nth-child(3) { background: var(--yellow); }
.step-num {
  position: absolute;
  top: -28px; left: -16px;
  width: 64px; height: 64px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 28px;
  border: 4px solid var(--white);
}
.step h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin: 12px 0 12px;
}
.step p { font-size: 15px; line-height: 1.5; }
.step svg.deco { position: absolute; top: 20px; right: 20px; width: 40px; opacity: 0.25; }

/* ======= DEPOIMENTOS ======= */
.depoimentos { padding-bottom: 96px; }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dep-card {
  background: var(--ink-2);
  border: 3px solid var(--white);
  padding: 28px;
  position: relative;
}
.dep-card .quote-mark {
  position: absolute;
  top: -14px; left: 20px;
  background: var(--yellow);
  color: var(--ink);
  width: 44px; height: 44px;
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 26px;
}
.dep-card p { font-size: 15px; line-height: 1.55; margin: 14px 0 18px; }
.dep-card p .hl { background: var(--yellow); color: var(--ink); padding: 1px 6px; font-weight: 800; }
.dep-foot { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 2px dashed rgba(255,255,255,0.18); }
.dep-foot .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--white);
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  color: var(--ink);
  font-size: 14px;
}
.dep-foot .name { font-weight: 800; font-size: 14px; }
.dep-foot .meta { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.dep-stars { color: var(--yellow); margin-left: auto; font-size: 14px; letter-spacing: 2px; }

/* ======= FINAL CTA ======= */
.final-cta {
  background: var(--yellow);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.15) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
}
.final-cta .container { position: relative; z-index: 2; }
.fc-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.92;
  text-transform: uppercase;
}
.fc-title .accent {
  color: var(--cyan-2);
  display: inline-block;
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 6px 6px 0 var(--ink);
}
.fc-sub { font-size: 18px; margin: 20px auto 36px; max-width: 600px; }
.fc-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ======= FOOTER ======= */
footer.foot {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 32px;
  border-top: 4px solid var(--ink);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}
.foot h4 {
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--yellow);
}
.foot ul { list-style: none; display: grid; gap: 10px; }
.foot ul a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.15s; }
.foot ul a:hover { color: var(--cyan); }
.foot-about p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.55; margin-top: 14px; }
.foot-news input {
  width: 100%;
  padding: 14px;
  background: var(--ink-2);
  border: 3px solid var(--white);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  margin-bottom: 10px;
}
.foot-news input:focus { outline: none; border-color: var(--yellow); }
.foot-bot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 2px solid var(--ink-3);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.foot-bot .social { display: flex; gap: 10px; }
.foot-bot .social a {
  width: 36px; height: 36px;
  background: var(--ink-2);
  border: 2px solid var(--ink-3);
  display: grid; place-items: center;
  transition: all 0.15s;
}
.foot-bot .social a:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.foot-bot .social svg { width: 16px; height: 16px; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { min-height: 480px; }
  .mdv-card { grid-template-columns: 1fr; }
  .mdv-image { border-right: none; border-bottom: 4px solid var(--ink); min-height: 320px; }
  .portals-grid { grid-template-columns: 1fr; }
  .ofertas-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .fitness-inner { grid-template-columns: 1fr; gap: 32px; }
  .corrida-inner { grid-template-columns: 1fr; gap: 32px; }
  .corrida-products { grid-template-columns: 1fr; }
  .como-grid { grid-template-columns: 1fr; }
  .step:nth-child(2) { transform: none; }
  .dep-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .ribbon-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .nav-links { display: none; }
  .nav-logo .brand-name { display: none; }
}
@media (max-width: 600px) {
  .ofertas-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; gap: 16px; }
  .section-head { flex-direction: column; align-items: flex-start; padding-top: 64px; }
  .hero { padding: 56px 0 80px; }
}
