/* ============================================================
   MOTTUZEIRO99 — HUB (portal de catálogos)
   ============================================================ */
:root {
  --bg: #08090c;
  --bg-2: #0e1015;
  --card: #12151c;
  --card-2: #171b24;
  --line: rgba(255, 255, 255, .08);
  --txt: #f2f4f8;
  --muted: #9aa3b2;
  --accent: #00ff84;
  --accent-2: #00c56a;
  --orange: #ff7a18;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0, 0, 0, .55);
  /* aliases usados pelo player de música */
  --green: #00ff84;
  --green-soft: rgba(0, 255, 132, .12);
  --green-glow: rgba(0, 255, 132, .45);
  --border-strong: rgba(0, 255, 132, .35);
  --text: #f2f4f8;
  --text-mute: #9aa3b2;
  --card-bg: #12151c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

.accent { color: var(--accent); }

.muted { color: var(--muted); }

/* ---------- PROMO BAR ---------- */
.promo-bar {
  position: sticky; top: 0; z-index: 60; overflow: hidden;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), #7dffc0, var(--accent), var(--accent-2));
  background-size: 300% 100%;
  color: #05130c;
  font-weight: 700;
  font-size: 14px;
  animation: promoFlow 6s linear infinite;
}
@keyframes promoFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
/* brilho que varre a barra */
.promo-bar::after {
  content: '';
  position: absolute; top: -50%; bottom: -50%; left: -30%; width: 18%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.75), transparent);
  transform: rotate(14deg); filter: blur(4px);
  pointer-events: none;
  animation: promoShine 4s ease-in-out infinite;
}
@keyframes promoShine {
  0% { left: -30%; opacity: 0; }
  10% { opacity: .9; }
  50% { left: 108%; opacity: 0; }
  100% { left: 108%; opacity: 0; }
}
.promo-bar.is-hidden { display: none; }
.promo-bar-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; padding: 9px 0; }
.promo-bar-text { margin: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.promo-bar-text strong { animation: promoPop 2.4s ease-in-out infinite; display: inline-block; }
@keyframes promoPop {
  0%, 100% { transform: scale(1); }
  8% { transform: scale(1.12); }
  16% { transform: scale(1); }
}
.promo-flame { animation: flame 1.4s ease-in-out infinite; }
@keyframes flame { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.promo-code-mini {
  display: inline-flex; align-items: center; gap: 6px;
  background: #05130c; color: var(--accent);
  border: 0; border-radius: 999px; padding: 4px 12px;
  font: inherit; letter-spacing: .06em; cursor: pointer;
  box-shadow: 0 0 0 0 rgba(5,19,12,.55);
  animation: promoCodeRing 2.4s ease-out infinite;
  transition: background .2s, transform .15s;
}
@keyframes promoCodeRing {
  0% { box-shadow: 0 0 0 0 rgba(5,19,12,.55); }
  60% { box-shadow: 0 0 0 10px rgba(5,19,12,0); }
  100% { box-shadow: 0 0 0 0 rgba(5,19,12,0); }
}
.promo-code-mini:hover { background: #0b2c1c; transform: scale(1.05); animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .promo-bar, .promo-bar::after, .promo-bar-text strong, .promo-flame, .promo-code-mini { animation: none; }
}
.promo-close {
  margin-left: auto; background: transparent; border: 0;
  font-size: 20px; line-height: 1; color: #05130c; cursor: pointer;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 9, 12, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.promo-bar:not(.is-hidden) + .site-header { top: 39px; }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  height: 52px; width: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 255, 132, .25));
  transition: transform .2s;
}
.brand:hover .brand-logo { transform: scale(1.04); }
.brand--foot .brand-logo { height: 76px; margin-bottom: 8px; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05130c; font-weight: 800; font-size: 14px;
}
.brand-text { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .06em; }
.brand-accent { color: var(--accent); }
.nav { display: flex; gap: 20px; margin-left: auto; font-size: 14px; font-weight: 600; }
.nav a { color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--accent); }
.cta-top {
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent); font-weight: 700; font-size: 14px;
  white-space: nowrap;
  transition: all .2s;
}
.cta-top:hover { background: var(--accent); color: #05130c; }
.cta-rifa {
  border-color: var(--orange); color: #1a0d00;
  background: linear-gradient(135deg, var(--orange), #ffb020);
  box-shadow: 0 0 18px rgba(255, 122, 24, .35);
  animation: rifaPulse 2.2s ease-in-out infinite;
}
.cta-rifa:hover { background: linear-gradient(135deg, #ff8f38, #ffc44d); color: #1a0d00; }
@keyframes rifaPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(255, 122, 24, .35); }
  50% { box-shadow: 0 0 26px rgba(255, 122, 24, .7); }
}

/* ---------- PLAYER DE MÚSICA ---------- */
.music-player { position: relative; display: inline-flex; align-items: center; gap: 10px; }
.music-name {
  font-size: 13px; font-weight: 500; color: var(--muted);
  max-width: 170px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-decoration: none; cursor: pointer; transition: color .2s;
}
.music-name:hover { color: var(--accent); text-decoration: underline; }
.music-controls { display: flex; align-items: center; gap: 6px; }
.music-prev, .music-next {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px; padding: 0;
  background: var(--green-soft); border: 1px solid var(--border-strong);
  color: var(--accent); cursor: pointer; transition: all .2s;
}
.music-prev:hover, .music-next:hover { background: var(--accent); color: #04140b; box-shadow: 0 0 12px var(--green-glow); }
.music-prev svg, .music-next svg { width: 16px; height: 16px; }
.music-mute {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px; padding: 0;
  background: var(--green-soft); border: 1px solid var(--border-strong);
  color: var(--accent); cursor: pointer; transition: all .2s;
}
.music-mute:hover { background: var(--accent); color: #04140b; box-shadow: 0 0 16px var(--green-glow); }
.music-mute svg { width: 18px; height: 18px; }
.music-volume-wrap { display: flex; align-items: center; gap: 6px; height: 20px; }
.music-volume {
  -webkit-appearance: none; appearance: none;
  width: 70px; height: 4px; margin: 0; padding: 0;
  background: var(--green-soft); border-radius: 2px; outline: none;
  cursor: pointer; vertical-align: middle;
}
.music-volume::-webkit-slider-runnable-track { height: 4px; background: var(--green-soft); border-radius: 2px; }
.music-volume::-moz-range-track { height: 4px; background: var(--green-soft); border-radius: 2px; }
.music-volume::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px; margin-top: -4px; border-radius: 50%;
  background: var(--accent); cursor: pointer; box-shadow: 0 0 8px var(--green-glow);
}
.music-volume::-moz-range-thumb {
  width: 12px; height: 12px; border: none; border-radius: 50%;
  background: var(--accent); cursor: pointer; box-shadow: 0 0 8px var(--green-glow);
}
.genre-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 4px 10px; border-radius: 6px;
  background: var(--green-soft); border: 1px solid var(--border-strong);
  color: var(--accent); font-size: 11px; font-weight: 700;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.genre-btn:hover { background: var(--accent); color: #04140b; box-shadow: 0 0 12px var(--green-glow); }
.mute-hint {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: 8px;
  background: var(--accent); color: #04140b;
  font-size: 11px; font-weight: 700; white-space: nowrap;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
}
.mute-hint.is-visible { opacity: 1; transform: translateY(0); }
.mute-hint__arrow { font-size: 16px; animation: bounceArrowUp 1s ease-in-out infinite; }
@keyframes bounceArrowUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 90px 0 70px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 15% -10%, rgba(0, 255, 132, .16), transparent 65%),
    radial-gradient(620px 380px at 90% 10%, rgba(255, 122, 24, .12), transparent 65%),
    var(--bg);
}
.hero-inner { position: relative; text-align: center; }
/* Hero com vídeo de fundo (Kit Preparação) */
.hero-bg--video { overflow: hidden; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: .65;
  background: #000;
}
.hero-video-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 15% -10%, rgba(0, 255, 132, .18), transparent 65%),
    radial-gradient(620px 380px at 90% 10%, rgba(255, 122, 24, .14), transparent 65%),
    linear-gradient(180deg, rgba(5, 7, 10, .72), rgba(5, 7, 10, .82) 55%, var(--bg));
}
.tag {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(0, 255, 132, .12); border: 1px solid rgba(0, 255, 132, .35);
  color: var(--accent); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}
.hero h1 {
  margin: 20px 0 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 8vw, 82px);
  line-height: .96; letter-spacing: .01em;
}
.lead { margin: 0 auto; max-width: 640px; color: var(--muted); font-size: 17px; line-height: 1.6; }

.hero-stats {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.hero-stats li {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 14px;
}
.hero-stats strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif; font-size: 34px;
  color: var(--accent); line-height: 1;
}
.hero-stats span { font-size: 13px; color: var(--muted); }
.hero-stats .mottu-clicks strong { color: var(--orange); }

/* ---------- SECTION HEAD ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em; color: var(--orange);
}
.section-head h2 {
  margin: 12px 0 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 5vw, 46px); line-height: 1.05;
}
.section-head p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- BOTOES ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 24px; border-radius: 12px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05130c; box-shadow: 0 10px 26px rgba(0, 255, 132, .22);
}
.btn-ghost { border-color: var(--line); background: rgba(255, 255, 255, .04); color: var(--txt); }
.btn-spray {
  position: relative; background: linear-gradient(135deg, #7cff3f, #00ff84 55%, #00c56a);
  color: #05130c; letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(0, 255, 132, .35);
}
.btn-spray:hover { box-shadow: 0 14px 32px rgba(0, 255, 132, .5); }
.btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; }
.btn[aria-disabled="true"]:hover { transform: none; }

/* ---------- MODELOS ---------- */
.models {
  position: relative;
  padding: 70px 0;
  background: url('../images/bg-motos-graffiti.jpg') center / cover no-repeat, var(--bg-2);
  background-attachment: fixed, scroll;
}
.models::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 12, .92), rgba(8, 9, 12, .78) 45%, rgba(8, 9, 12, .94));
  pointer-events: none;
}
.models > .container { position: relative; z-index: 1; }
.models-grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}
.model-card {
  position: relative; overflow: hidden;
  background: rgba(18, 21, 28, .92);
  border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  transition: transform .25s, border-color .25s;
}
.model-card:hover { transform: translateY(-5px); border-color: rgba(0, 255, 132, .38); }
.model-card.is-soon:hover { border-color: rgba(255, 122, 24, .38); }
.model-glow {
  position: absolute; inset: -40% 40% 60% -40%;
  background: radial-gradient(closest-side, rgba(0, 255, 132, .22), transparent);
  pointer-events: none;
}
.model-card--apache .model-glow { background: radial-gradient(closest-side, rgba(255, 122, 24, .2), transparent); }
.model-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
}
.model-badge--live { background: rgba(0, 255, 132, .16); color: var(--accent); border: 1px solid rgba(0, 255, 132, .4); }
.model-badge--soon { background: rgba(255, 122, 24, .16); color: var(--orange); border: 1px solid rgba(255, 122, 24, .4); }
/* Fundo grafite atrás da moto (PNG com fundo removido) */
.model-media {
  position: relative; height: 230px;
  margin: 14px 14px 0; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  background:
    radial-gradient(ellipse 62% 34% at 50% 88%, rgba(0, 255, 132, .16), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 30%, #14181d 0%, #0b0e12 45%, #05070a 100%);
  overflow: hidden;
}
.model-media::before {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 34px);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 20%, transparent 100%);
  pointer-events: none;
}
.model-media::after {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 255, 132, .18);
  pointer-events: none;
}
.model-card--apache .model-media {
  background:
    radial-gradient(ellipse 62% 34% at 50% 88%, rgba(255, 122, 24, .16), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 30%, #14181d 0%, #0b0e12 45%, #05070a 100%);
}
.model-card--apache .model-media::after { box-shadow: inset 0 0 0 1px rgba(255, 122, 24, .18); }
.model-media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .75));
}
.model-body { position: relative; padding: 16px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.model-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }
.model-body h3 { margin: 6px 0 10px; font-family: 'Bebas Neue', sans-serif; font-size: 38px; line-height: 1; }
.model-body > p { margin: 0 0 16px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.model-feats { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 8px; }
.model-feats li { position: relative; padding-left: 24px; font-size: 14px; color: #cfd6e2; }
.model-feats li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
}
.model-card--apache .model-feats li::before { color: var(--orange); }
.model-ctas { margin-top: auto; display: flex; flex-wrap: wrap; gap: 12px; }
.model-card.shake { animation: cardShake .5s ease; }
@keyframes cardShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}
.model-ctas .btn { flex: 1 1 160px; }

/* ---------- CUPOM ---------- */
.coupon { padding: 60px 0; }
.coupon-card {
  position: relative; overflow: hidden;
  display: grid; gap: 26px; align-items: center;
  grid-template-columns: 1.4fr 1fr;
  padding: 34px; border-radius: 24px;
  background: linear-gradient(135deg, #14181f, #0d1014);
  border: 1px solid rgba(0, 255, 132, .45);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(0, 255, 132, .12),
    0 0 34px rgba(0, 255, 132, .18),
    0 0 90px rgba(0, 255, 132, .12);
  animation: couponBreath 3.2s ease-in-out infinite;
}
@keyframes couponBreath {
  0%, 100% {
    box-shadow: var(--shadow), 0 0 0 1px rgba(0,255,132,.12), 0 0 26px rgba(0,255,132,.14), 0 0 70px rgba(0,255,132,.08);
    border-color: rgba(0,255,132,.35);
  }
  50% {
    box-shadow: var(--shadow), 0 0 0 1px rgba(0,255,132,.28), 0 0 46px rgba(0,255,132,.32), 0 0 120px rgba(0,255,132,.20);
    border-color: rgba(0,255,132,.75);
  }
}
/* brilho que varre o card */
.coupon-card::after {
  content: '';
  position: absolute; top: -60%; bottom: -60%; left: -40%; width: 32%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.10) 35%, rgba(0,255,132,.28) 50%, rgba(255,255,255,.10) 65%, transparent);
  transform: rotate(12deg); filter: blur(6px);
  pointer-events: none;
  animation: couponSweep 4.5s ease-in-out infinite;
}
@keyframes couponSweep {
  0% { left: -45%; opacity: 0; }
  12% { opacity: 1; }
  55% { left: 105%; opacity: 0; }
  100% { left: 105%; opacity: 0; }
}
.coupon-glow {
  position: absolute; inset: -60% 55% 30% -30%;
  background: radial-gradient(closest-side, rgba(0, 255, 132, .34), transparent);
  animation: couponGlowPulse 3.2s ease-in-out infinite;
}
@keyframes couponGlowPulse {
  0%, 100% { opacity: .65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.coupon-left, .coupon-right { position: relative; z-index: 2; }
.coupon-tag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  text-shadow: 0 0 14px rgba(0, 255, 132, .55);
}
.coupon-title { margin: 10px 0; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.coupon-amount {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 9vw, 76px); line-height: .9; color: var(--accent);
  text-shadow: 0 0 12px rgba(0,255,132,.55), 0 0 38px rgba(0,255,132,.35);
  animation: couponNeon 2.6s ease-in-out infinite;
}
@keyframes couponNeon {
  0%, 100% { text-shadow: 0 0 10px rgba(0,255,132,.40), 0 0 30px rgba(0,255,132,.22); }
  50% { text-shadow: 0 0 18px rgba(0,255,132,.85), 0 0 56px rgba(0,255,132,.55), 0 0 90px rgba(0,255,132,.30); }
}
.coupon-off { font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 4vw, 32px); color: var(--txt); }
.coupon-desc { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.coupon-right { text-align: center; }
.coupon-label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.coupon-code {
  position: relative; z-index: 2;
  margin-top: 10px; cursor: pointer; user-select: none;
  border: 2px dashed rgba(0, 255, 132, .75); border-radius: 16px;
  padding: 18px 14px; background: rgba(0, 255, 132, .10);
  box-shadow: 0 0 22px rgba(0,255,132,.22), inset 0 0 26px rgba(0,255,132,.10);
  transition: background .2s, transform .15s, box-shadow .2s;
  animation: couponCodePulse 2.6s ease-in-out infinite;
}
@keyframes couponCodePulse {
  0%, 100% { box-shadow: 0 0 16px rgba(0,255,132,.16), inset 0 0 20px rgba(0,255,132,.07); }
  50% { box-shadow: 0 0 34px rgba(0,255,132,.42), inset 0 0 32px rgba(0,255,132,.16); }
}
.coupon-code:hover {
  background: rgba(0, 255, 132, .18); transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(0,255,132,.5), inset 0 0 34px rgba(0,255,132,.18);
  animation-play-state: paused;
}
.coupon-code-text {
  display: block; font-family: 'Bebas Neue', sans-serif; font-size: 40px;
  letter-spacing: .1em; color: var(--accent);
  text-shadow: 0 0 14px rgba(0,255,132,.6), 0 0 40px rgba(0,255,132,.35);
}
.coupon-copy { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13px; color: var(--muted); }
.coupon-note { margin: 10px 0 0; font-size: 12px; color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
  .coupon-card, .coupon-card::after, .coupon-glow, .coupon-amount, .coupon-code { animation: none; }
}

/* ---------- GRIDS DE CARDS ---------- */
.catalog { padding: 60px 0; }
.catalog:nth-of-type(even) { background: var(--bg-2); }
.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
}
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  text-align: left; padding: 0; color: inherit; font: inherit;
}
.card:hover { transform: translateY(-4px); border-color: rgba(0, 255, 132, .35); box-shadow: var(--shadow); }

/* Card horizontal: foto branca à esquerda, conteúdo à direita */
.card--row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  background:
    linear-gradient(180deg, rgba(0, 255, 132, .06), rgba(0, 0, 0, .2)),
    var(--card);
}
.card--row .card-media {
  position: relative; height: 100%; min-height: 240px;
  background: #fff; padding: 14px; display: grid; place-items: center;
}
.card--row .card-media img { width: 100%; height: 100%; object-fit: contain; }
.card-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(6, 20, 12, .9); border: 1px solid rgba(0, 255, 132, .5);
  color: var(--accent); font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.card--row .card-body { padding: 20px 22px; gap: 12px; }
.card--row .card-title {
  font-size: 22px; font-weight: 800; line-height: 1.2; color: var(--txt);
}
.card--row .card-desc { font-size: 14px; }
.card--row .card-options {
  width: 100%; margin-top: auto;
}
.card-media { height: 160px; background: #0b0d11; display: grid; place-items: center; padding: 12px; }
.card-media img { max-height: 100%; object-fit: contain; }
.card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-tag {
  align-self: flex-start; font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255, 122, 24, .14); color: var(--orange);
}
.card-title { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.35; }
.card-brand { font-size: 12px; color: var(--accent); font-weight: 700; }
.card-desc { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.card-foot { margin-top: auto; padding-top: 10px; font-size: 12px; color: var(--accent); font-weight: 700; }
.grid-featured { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
.grid-featured .card-media { height: 190px; }

/* Cards de apoiadores — mesmo padrão do site da 110i */
.card--featured {
  display: flex; flex-direction: column; cursor: default;
  border-color: rgba(0, 255, 132, .45);
  background:
    linear-gradient(180deg, rgba(0, 255, 132, .08), rgba(0, 0, 0, .18)),
    rgba(5, 10, 7, .72);
  box-shadow: 0 0 0 1px rgba(0, 255, 132, .18), 0 0 40px -12px rgba(0, 255, 132, .35) inset;
}
.card--featured:hover { transform: translateY(-4px); border-color: rgba(0, 255, 132, .7); }
.card-image-wrap {
  display: block; background: #fff;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-image-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.card--featured .card-body { padding: 16px 18px 20px; gap: 10px; }
.card-brand-row { display: flex; align-items: center; gap: 10px; }
.card-brand-logo {
  width: 40px; height: 40px; flex: 0 0 40px;
  object-fit: contain; border-radius: 6px; background: #fff; padding: 2px;
}
.card--featured .card-brand { font-size: 15px; font-weight: 600; color: var(--accent); line-height: 1.25; }
.card--featured .card-title { font-size: 16px; font-weight: 700; color: var(--txt); }
.card-options { width: 100%; margin-top: auto; }
.btn-light {
  background: #eef1f5; color: #14181f; border-color: #dfe4ea; font-weight: 600;
}
.btn-light:hover { background: #fff; }

/* ---------- VIDEOS EMBED ---------- */
.video-grid {
  margin-top: 40px; display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.video-col {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
}
.video-col__title { margin: 0 0 12px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .04em; }
.video-col iframe { border-radius: 12px; display: block; }

/* ---------- RIFA ---------- */
.rifa { padding: 60px 0 20px; }
.rifa-card {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--card); color: inherit; text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.rifa-card:hover {
  transform: translateY(-3px); border-color: rgba(255,168,66,.55);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(255,168,66,.25);
}
.rifa-media { position: relative; background: #05070a; }
.rifa-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.rifa-badge {
  align-self: flex-start;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,168,66,.12); border: 1px solid rgba(255,168,66,.5);
  color: #ffc44d; font-size: 12px; font-weight: 800; letter-spacing: .03em;
}
.rifa-body {
  padding: 24px; display: flex; flex-direction: column;
  justify-content: center; gap: 18px;
}
.rifa-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.rifa-feats li {
  position: relative; padding-left: 24px; font-size: 15px; color: var(--muted);
}
.rifa-feats li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: #ffc44d; font-weight: 900;
}
.rifa-feats strong { color: var(--fg); }
.btn-rifa {
  justify-content: center; width: 100%;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #1a0d00; font-weight: 800; border: none;
}
.rifa-card:hover .btn-rifa { background: linear-gradient(135deg, #ff8f38, #ffc44d); }

@media (max-width: 860px) {
  .rifa-card { grid-template-columns: 1fr; }
  .rifa-media img { height: auto; }
  .rifa-body { padding: 20px; }
}

/* ---------- SOCIALS ---------- */
.socials { padding: 60px 0; }
.socials-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.social-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
  transition: transform .2s, border-color .2s;
}
.social-card:hover { transform: translateY(-3px); border-color: rgba(0, 255, 132, .35); }
.social-icon img { border-radius: 8px; }
.social-text { display: flex; flex-direction: column; }
.social-platform { font-weight: 700; font-size: 15px; }
.social-handle { font-size: 12.5px; color: var(--muted); }
.social-arrow { margin-left: auto; color: var(--accent); font-size: 20px; }

/* ---------- CTA KIT PREPARAÇÃO ---------- */
.kit-cta-sec { padding: 10px 0 0; }
.kit-cta {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px;
  padding: 26px 30px; border-radius: 22px; text-decoration: none; color: var(--fg);
  background:
    radial-gradient(ellipse 50% 120% at 8% 50%, rgba(0,255,132,.16), transparent 70%),
    linear-gradient(135deg, #12171d, #0a0d11);
  border: 1px solid rgba(0,255,132,.28);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.kit-cta:hover {
  transform: translateY(-3px); border-color: rgba(0,255,132,.6);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 34px rgba(0,255,132,.16);
}
.kit-cta__text { display: flex; flex-direction: column; gap: 8px; }
.kit-cta__tag {
  align-self: flex-start; padding: 5px 12px; border-radius: 999px;
  background: rgba(0,255,132,.12); border: 1px solid rgba(0,255,132,.35);
  color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.kit-cta__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 3.4vw, 38px); line-height: 1; }
.kit-cta__title mark { background: none; color: var(--accent); }
.kit-cta__desc { font-size: 14.5px; color: var(--muted); max-width: 640px; line-height: 1.55; }
.kit-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #05130c; font-weight: 800; font-size: 15px;
  transition: transform .18s ease;
}
.kit-cta:hover .kit-cta__btn { transform: scale(1.04); }
.card-media--noimg,
.card--row .card-media--noimg {
  background: linear-gradient(135deg, #10151b, #0a0d11);
  min-height: 0; height: auto; aspect-ratio: auto; padding: 26px 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.card-media--noimg::after {
  content: '🏍️'; font-size: 40px; opacity: .35;
}
.card-media--noimg .card-cat { position: static; }
.kit-empty {  margin-top: 8px; padding: 44px 28px; text-align: center;
  border: 1px dashed rgba(0,255,132,.35); border-radius: var(--radius);
  background: rgba(0,255,132,.04);
}
.kit-empty h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; margin: 0 0 8px; }
.kit-empty p { color: var(--muted); margin: 0 auto 18px; max-width: 520px; }
.nav a.is-active { color: var(--accent); }
@media (max-width: 860px) {
  .kit-cta { grid-template-columns: 1fr; padding: 22px; }
  .kit-cta__btn { justify-content: center; }
}

/* ---------- BANNER GRUPO WHATSAPP ---------- */
.wa-banner {
  position: relative; overflow: hidden;
  margin-top: 22px; padding: 26px 30px; border-radius: 22px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 22px;
  color: #fff; text-decoration: none;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.07) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #16b45c, #25d366 55%, #12a04f);
  box-shadow: 0 18px 44px rgba(18, 200, 100, .22), inset 0 0 0 1px rgba(255,255,255,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(18, 200, 100, .34), inset 0 0 0 1px rgba(255,255,255,.18);
}
.wa-banner__icon {
  width: 84px; height: 84px; border-radius: 20px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22);
}
.wa-banner__icon img { width: 46px; height: 46px; object-fit: contain; }
.wa-banner__text { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.wa-banner__tag {
  align-self: flex-start; padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.22);
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.wa-banner__title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1; letter-spacing: .02em;
}
.wa-banner__title mark {
  background: rgba(0,0,0,.22); color: #fff;
  padding: 2px 10px; border-radius: 8px;
}
.wa-banner__desc { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.92); max-width: 620px; }
.wa-banner__btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px; border-radius: 14px;
  background: #fff; color: #12a04f; font-weight: 800; font-size: 15px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .18s ease;
}
.wa-banner:hover .wa-banner__btn { transform: scale(1.04); }

@media (max-width: 860px) {
  .wa-banner { grid-template-columns: auto 1fr; padding: 22px; gap: 16px; }
  .wa-banner__icon { width: 60px; height: 60px; border-radius: 16px; }
  .wa-banner__icon img { width: 34px; height: 34px; }
  .wa-banner__btn { grid-column: 1 / -1; justify-content: center; }
}

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 44px 0 18px; }
.footer-inner { display: grid; gap: 30px; grid-template-columns: 1.4fr 1fr; }
.footer-inner .muted { max-width: 380px; font-size: 14px; line-height: 1.6; }
.foot-cols { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.foot-cols h4 { margin: 0 0 12px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.foot-cols a { display: block; margin-bottom: 8px; font-size: 14px; color: #cfd6e2; }
.foot-cols a:hover { color: var(--accent); }
.copy { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--line); text-align: center; font-size: 12px; color: var(--muted); }

/* ---------- MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .78); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; z-index: 2;
  width: min(1000px, 94vw); max-height: 88vh; overflow-y: auto;
  margin: 6vh auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0e1015; border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow);
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, .1); border: 1px solid var(--line);
  color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255, 255, 255, .2); }
.modal-media {
  background: #fff; display: grid; place-items: center; padding: 20px;
  border-radius: 22px 0 0 22px; min-height: 320px;
}
.modal-media img { width: 100%; height: 100%; max-height: 460px; object-fit: contain; }
.modal-body { padding: 34px 34px 30px; display: flex; flex-direction: column; }
.modal-body .eyebrow { color: var(--muted); letter-spacing: .04em; text-transform: none; font-size: 15px; font-weight: 500; order: 2; }
.modal-body h3 {
  order: 1; margin: 0 0 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.02;
  letter-spacing: .01em; text-transform: uppercase;
}
.modal-body > p#modalDesc { order: 3; margin: 12px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.modal-links { order: 4; margin-top: 26px; display: grid; gap: 14px; }
.modal-links .btn { padding: 17px 24px; border-radius: 14px; font-size: 16px; }
.modal-note {
  order: 5; margin: 18px 0 0; text-align: center;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
}
.btn-shopee {
  background: #ee4d2d; color: #fff;
  box-shadow: 0 10px 26px rgba(238, 77, 45, .28);
}
.btn-shopee:hover { background: #ff5c3c; }

/* ---------- OVERLAY MOTTU ---------- */
.mottu-overlay { position: fixed; inset: 0; z-index: 120; display: none; }
.mottu-overlay.is-open { display: block; }
.mottu-overlay__bg { position: absolute; inset: 0; background: rgba(0, 0, 0, .88); backdrop-filter: blur(6px); }
.mottu-overlay__content {
  position: relative; z-index: 2; text-align: center;
  width: min(460px, 92vw); margin: 16vh auto 0;
  padding: 34px 26px; border-radius: 22px;
  background: linear-gradient(135deg, #14181f, #0b0d11);
  border: 1px solid rgba(0, 255, 132, .3); box-shadow: var(--shadow);
}
.mottu-overlay__line1 { margin: 0; font-family: 'Bebas Neue', sans-serif; font-size: 30px; }
.mottu-overlay__line2 { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.mottu-overlay__code-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 14px 0; }
.mottu-overlay__code { margin: 0; font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: .12em; color: var(--accent); }
.mottu-overlay__copy {
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer;
  background: rgba(0, 255, 132, .12); border: 1px solid rgba(0, 255, 132, .4);
  color: var(--accent); display: grid; place-items: center;
}
.mottu-overlay__line3 { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.mottu-overlay__btn {
  display: block; padding: 14px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05130c; font-weight: 800;
}
.mottu-overlay__close { margin-top: 14px; background: none; border: 0; color: var(--muted); font-size: 13px; cursor: pointer; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  z-index: 200; padding: 12px 20px; border-radius: 999px;
  background: var(--accent); color: #05130c; font-weight: 700; font-size: 14px;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 900px) {
  .music-name { display: none; }
  .music-volume-wrap { display: none; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-media { border-radius: 22px 22px 0 0; min-height: 240px; }
  .modal-body { padding: 24px 22px 26px; }
  .coupon-card { grid-template-columns: 1fr; text-align: center; }
  .coupon-title { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .cta-top { margin-left: auto; padding: 8px 13px; font-size: 13px; }
  .cta-top + .cta-top { margin-left: 8px; }
  .hero { padding: 56px 0 44px; }
  .models { background-attachment: scroll, scroll; }
  .model-media { height: 190px; }
  .grid { grid-template-columns: 1fr; }
  .card--row { grid-template-columns: 1fr; }
  .card--row .card-media { min-height: 0; aspect-ratio: 4 / 3; }
  .card--row .card-title { font-size: 19px; }
  .card-media { height: 120px; }
}

/* card sem foto: altura compacta em qualquer tela */
.card .card-media--noimg { aspect-ratio: auto; min-height: 0; height: auto; }

/* ============================================================
   TELA DE CARREGAMENTO
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #08090c;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
body.is-loading { overflow: hidden; }

.loader-inner {
  width: min(720px, 88vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.loader-logo {
  width: min(230px, 46vw);
  height: auto;
  filter: drop-shadow(0 0 26px rgba(0, 255, 132, .35));
  animation: loaderPulse 1.6s ease-in-out infinite;
}
.loader-motos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}
.loader-motos img {
  width: 46%;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .7));
  opacity: 0;
  animation: loaderMoto .6s ease forwards;
}
.loader-motos img:nth-child(1) { animation-delay: .05s; }
.loader-motos img:nth-child(2) { animation-delay: .2s; }
.loader-bar {
  width: min(260px, 60vw);
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  animation: loaderSlide 1.1s ease-in-out infinite;
}
@keyframes loaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes loaderMoto { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes loaderSlide { 0% { transform: translateX(-110%); } 100% { transform: translateX(260%); } }

@media (max-width: 640px) {
  .loader-motos { flex-direction: column; gap: 10px; }
  .loader-motos img { width: 78%; }
}
@media (prefers-reduced-motion: reduce) {
  .loader-logo, .loader-motos img, .loader-bar span { animation: none; opacity: 1; }
}
