/* ============================================================
   MULTI MARKET — Component styles
   ============================================================ */

#app { overflow-x: clip; }

/* ============================================================
   HEADER
   ============================================================ */
.mm-header { position: sticky; top: 0; z-index: 1010; background: var(--paper); }

.mm-header__ribbon {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}
.mm-header__ribbon-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px;
}
.mm-ribbon-msg { font-weight: 500; opacity: .92; letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mm-ribbon-social { display: flex; gap: 10px; }
.mm-soc {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.mm-soc:hover { background: var(--red); transform: translateY(-2px); }

/* Row 1 — logo + search */
.mm-header__main {
  display: flex; align-items: center; gap: 28px;
  padding-block: 18px;
}
.mm-search {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: var(--cloud); border: 2px solid transparent;
  border-radius: var(--r-pill); padding: 6px 6px 6px 18px;
  color: var(--ink-3); transition: border-color .2s ease, background .2s ease;
  max-width: 560px; margin-left: auto;
}
.mm-search:focus-within { border-color: var(--red); background: #fff; }
.mm-search input {
  flex: 1; border: none; background: transparent; outline: none;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding-block: 10px;
}
.mm-search input::placeholder { color: var(--ink-3); }
.mm-search__btn {
  border: none; background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: var(--r-pill); cursor: pointer;
  transition: filter .2s ease;
}
.mm-search__btn:hover { filter: brightness(1.08); }

/* Logo */
.mm-logo { display: inline-flex; align-items: center; }
.mm-logo img { height: 64px; width: auto; display: block; }
.mm-logo--sm img { height: 48px; }

/* Row 2 — nav */
.mm-header__nav { border-top: 1px solid var(--line); background: var(--paper); }
.is-scrolled .mm-header__nav { box-shadow: var(--sh-sm); }
.mm-header__nav-row { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.mm-tabs { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.mm-tabs a {
  display: inline-flex; align-items: center; height: 56px; padding: 0 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--ink-2); position: relative; transition: color .18s ease;
}
.mm-tabs a::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 0; height: 3px;
  background: var(--red); border-radius: 3px 3px 0 0; transform: scaleX(0);
  transition: transform .2s ease; transform-origin: center;
}
.mm-tabs a:hover { color: var(--ink); }
.mm-tabs a.is-active { color: var(--red); }
.mm-tabs a.is-active::after, .mm-tabs a:hover::after { transform: scaleX(1); }

.mm-header__actions { display: flex; gap: 10px; align-items: center; }
.mm-club svg { margin-right: -2px; }

/* Burger + drawer */
.mm-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.mm-burger span { width: 24px; height: 2.6px; background: var(--ink); border-radius: 2px; }

.mm-drawer { position: fixed; inset: 0; z-index: 1020; pointer-events: none; }
.mm-drawer__scrim { position: absolute; inset: 0; background: rgba(27,22,20,.45); opacity: 0; transition: opacity .25s ease; }
.mm-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 360px);
  background: #fff; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 22px; display: flex; flex-direction: column; gap: 20px; box-shadow: var(--sh-lg);
}
.mm-drawer.is-open { pointer-events: auto; }
.mm-drawer.is-open .mm-drawer__scrim { opacity: 1; }
.mm-drawer.is-open .mm-drawer__panel { transform: translateX(0); }
.mm-drawer__top { display: flex; align-items: center; justify-content: space-between; }
.mm-drawer__close { border: none; background: var(--cloud); width: 38px; height: 38px; border-radius: 50%; font-size: 16px; }
.mm-search--drawer { max-width: none; margin: 0; }
.mm-drawer__nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mm-drawer__nav a {
  display: block; padding: 15px 6px; font-family: var(--font-display); font-weight: 700;
  font-size: 19px; border-bottom: 1px solid var(--line);
}
.mm-drawer__actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.mm-drawer__actions .btn { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }

/* Banner original ocupando 100% da largura (arte 1920x620px).
   A altura é maior que a proporção nativa para abrir espaço aos cards na base.
   O excesso é cortado nas laterais, onde a arte é só padrão de fundo
   (o conteúdo vive entre x=600 e x=1400 de 1920). */
.hero__bg { position: relative; width: 100%; overflow: hidden; height: clamp(460px, 52vw, 700px); }
.hero__track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.hero__slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  height: 100%;
}
.hero__slide picture { display: block; height: 100%; }
.hero__banner { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero__slide.is-red   { background: radial-gradient(110% 130% at 8% 0%, var(--red-bright), var(--red) 48%, var(--red-ink) 100%); }
.hero__slide.is-green { background: radial-gradient(110% 130% at 8% 0%, #2FA84F, #138A3E 52%, #0A5C28 100%); }
.hero__slide.is-dark  { background: radial-gradient(110% 130% at 8% 0%, #3A332F, #221D1A 55%, #120F0D 100%); }
.hero__slide::after {
  content: ""; position: absolute; right: -6%; top: -30%; width: 55%; height: 160%;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 60%); pointer-events: none;
}
.hero__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(40px,5vw,64px) clamp(300px, 32vw, 380px);
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 32px;
}

.hero__copy { color: #fff; position: relative; z-index: 2; }
.hero__badge { margin-bottom: 18px; }
.hero__title { font-size: clamp(40px, 5.6vw, 74px); font-weight: 900; line-height: .98; color: #fff; }
.hero__title span { display: block; }
.hero__title span:last-child { color: var(--yellow); }
.hero__sub { margin-top: 18px; font-size: clamp(16px, 1.8vw, 20px); max-width: 40ch; color: rgba(255,255,255,.92); line-height: 1.45; }
.hero__bottom { margin-top: 30px; }

.hero__stage { position: relative; z-index: 2; display: grid; place-items: center; min-height: 300px; }
.hero__prod {
  width: 430px;
  height: 450px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pill {
  position: absolute; right: 0; top: 26px;
  background: #fff; border-radius: 999px; padding: 10px 20px 10px 18px;
  box-shadow: var(--sh-lg); display: flex; flex-direction: column; line-height: 1.05;
}
.hero-pill__off { font-family: var(--font-display); font-weight: 900; font-size: 17px; color: var(--red); }
.hero-pill__txt { font-size: 11px; color: var(--ink-2); font-weight: 600; margin-top: 1px; white-space: nowrap; }

/* dots */
.hero__dots { position: absolute; top: 24px; right: var(--gutter); display: flex; gap: 8px; z-index: 5; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); cursor: pointer; transition: all .2s ease; padding: 0; }
.hero__dot.is-active { width: 28px; border-radius: 5px; background: var(--yellow); }

/* Cards sobrepostos na base do banner (arte 195x130px) */
.hero__cards-wrap {
  position: absolute; z-index: 6;
  left: 0; right: 0; bottom: clamp(16px, 2.2vw, 30px);
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
}
.hero__cards { flex: 1; min-width: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; animation: hero-cards-in .5s ease both; }
@keyframes hero-cards-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__cards { animation: none; }
  .hero__track { transition: none; }
}

.hero__arrow {
  flex: 0 0 auto; align-self: center;
  width: 48px; height: 48px; border-radius: 50%; border: none; background: #fff;
  color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: var(--sh-md);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.hero__arrow:hover { background: var(--red); color: #fff; transform: scale(1.06); }

.prodcard {
  display: block; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); background: #fff;
  transition: transform .2s ease, box-shadow .25s ease;
}
.prodcard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.prodcard__img { width: 100%; height: auto; aspect-ratio: 195 / 130; object-fit: cover; display: block; }
.prodcard__media {
  position: relative;
  aspect-ratio: 195 / 130;
}
.prodcard__off {
  position: absolute; top: 10px; left: 10px; background: #fff; color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  padding: 4px 10px; border-radius: 999px; box-shadow: var(--sh-sm);
}
.prodcard__slot {
  display: block !important;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: auto !important; height: auto !important;
  --is-bg: transparent;
}
.prodcard__slot::part(frame) { background: transparent !important; }
.prodcard__name { font-size: 16px; font-weight: 800; line-height: 1.15; }
.prodcard__desc { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.prodcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.prodcard__price { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--ink); }
.prodcard__price small { font-size: 13px; color: var(--ink-2); font-weight: 700; }
.prodcard__add {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: all .2s ease;
}
.prodcard__add:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { background: var(--cloud); }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dif-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .25s ease;
}
.dif-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.dif-card__ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--red); color: #fff; margin-bottom: 20px; box-shadow: var(--sh-red);
}
.dif-card__t { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.dif-card__d { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.dif-cta { display: flex; justify-content: center; margin-top: 44px; }

/* Bold card variant (tweak) */
[data-cards="bold"] .dif-card:nth-child(1) { background: var(--red); }
[data-cards="bold"] .dif-card:nth-child(2) { background: var(--yellow); }
[data-cards="bold"] .dif-card:nth-child(3) { background: var(--ink); }
[data-cards="bold"] .dif-card:nth-child(4) { background: #138A3E; }
[data-cards="bold"] .dif-card:nth-child(1),
[data-cards="bold"] .dif-card:nth-child(3),
[data-cards="bold"] .dif-card:nth-child(4) { color: #fff; border-color: transparent; }
[data-cards="bold"] .dif-card:nth-child(1) .dif-card__d,
[data-cards="bold"] .dif-card:nth-child(3) .dif-card__d,
[data-cards="bold"] .dif-card:nth-child(4) .dif-card__d { color: rgba(255,255,255,.85); }
[data-cards="bold"] .dif-card .dif-card__ic { background: rgba(255,255,255,.2); box-shadow: none; }
[data-cards="bold"] .dif-card:nth-child(2) .dif-card__ic { background: var(--ink); color: var(--yellow); }
[data-cards="bold"] .dif-card:nth-child(2) .dif-card__d { color: var(--ink-2); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__slot { width: 100%; height: clamp(340px, 42vw, 480px); }
.about__stat {
  position: absolute; right: -18px; bottom: -22px; background: var(--red); color: #fff;
  border-radius: var(--r-lg); padding: 20px 26px; box-shadow: var(--sh-red);
  display: flex; align-items: center; gap: 14px;
}
.about__stat strong { font-family: var(--font-display); font-weight: 900; font-size: 56px; line-height: .8; color: var(--yellow); }
.about__stat span { font-weight: 600; font-size: 14px; line-height: 1.2; }
.about__copy .section-sub { margin-top: 20px; }
.checklist { list-style: none; margin: 26px 0 30px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; font-size: 16px; font-weight: 500; color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px;
  background: var(--yellow); color: var(--ink); border-radius: 50%; display: grid; place-items: center;
  font-size: 13px; font-weight: 900;
}

/* ============================================================
   CLUBE
   ============================================================ */
.clube { background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 70%, var(--red-ink) 100%); color: #fff; position: relative; overflow: hidden; }
.clube::before {
  content: ""; position: absolute; left: -8%; top: -20%; width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 65%);
}
.clube__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 80px); align-items: center; position: relative; z-index: 2; }
.eyebrow--light { color: var(--yellow); }
.eyebrow--light::before { background: #fff; }
.clube .section-title { color: #fff; }
.clube__sub { margin-top: 18px; font-size: clamp(16px,1.7vw,19px); color: rgba(255,255,255,.9); max-width: 46ch; line-height: 1.5; }
.perks { list-style: none; margin: 28px 0 32px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.perks li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.88); line-height: 1.4; }
.perks li strong { color: #fff; font-size: 17px; }
.perks__ic { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--yellow); color: var(--red); display: grid; place-items: center; margin-top: 2px; }
.clube__media { position: relative; display: grid; place-items: center; }
.clube__slot { width: 100%; height: clamp(320px, 40vw, 440px); --is-bg: rgba(255,255,255,.12); }
.clube__seal {
  position: absolute; top: -16px; right: -10px; background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-weight: 900; font-size: 18px; transform: rotate(8deg);
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--sh-md);
  border: 3px solid #fff;
}

/* ============================================================
   BANNER APP
   ============================================================ */
.banner-app-wrap { background: var(--cloud); }
.banner-app {
  background: linear-gradient(110deg, var(--ink) 0%, #2A2421 100%);
  border-radius: var(--r-xl); padding: clamp(32px, 5vw, 56px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  color: #fff; position: relative; overflow: hidden;
}
.banner-app::after {
  content: ""; position: absolute; right: -6%; bottom: -40%; width: 40%; height: 160%;
  background: radial-gradient(circle, rgba(255,209,0,.18), transparent 60%);
}
.banner-app__copy { position: relative; z-index: 2; }
.banner-app__copy h2 { font-size: clamp(26px, 3.4vw, 42px); margin: 16px 0 12px; color: #fff; }
.banner-app__copy p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 42ch; line-height: 1.5; }
.banner-app__btns { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.banner-app__ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.banner-app__ghost:hover { color: var(--yellow); border-color: var(--yellow); }
.banner-app__slot { width: 100%; height: clamp(220px, 26vw, 300px); --is-bg: rgba(255,255,255,.08); position: relative; z-index: 2; }

/* ============================================================
   OFERTAS DA SEMANA (destaque — atrai pelo preço)
   ============================================================ */
.ofertas__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; margin-bottom: 44px; }
.ofertas__head .section-title { margin-top: 12px; }
.ofertas__head .section-sub { margin-top: 12px; max-width: 52ch; margin-inline: auto; }
.ofertas__link { margin-top: 24px; }
.ofertas__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.oferta {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 12px 12px 18px; box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .25s ease;
}
.oferta:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.oferta__media { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1 / .9; }
.oferta__media img { width: 100%; height: 100%; object-fit: cover; }
.oferta__off {
  position: absolute; top: 8px; left: 8px; z-index: 2; background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 11px;
  padding: 4px 9px; border-radius: 999px; box-shadow: var(--sh-sm);
}
.oferta__name { font-size: 16px; font-weight: 800; margin-top: 14px; line-height: 1.15; }
.oferta__desc { font-size: 12px; color: var(--ink-3); margin-top: 3px; }
.oferta__prices { display: flex; flex-direction: column; margin-top: 12px; }
.oferta__from { font-size: 12px; color: var(--ink-3); text-decoration: line-through; }
.oferta__price { font-family: var(--font-display); font-weight: 900; font-size: 26px; color: var(--red); line-height: 1.1; }
.oferta__price small { font-size: 13px; font-weight: 800; }
.oferta__club {
  display: inline-block; margin-top: 8px; background: var(--yellow); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

/* ============================================================
   TV MULTI MARKET
   ============================================================ */
.tv { background: var(--ink); color: #fff; }
.tv .section-title { color: #fff; }
/* .section-head define flex-direction: column — sem declarar row aqui,
   o align-items: flex-end joga o título todo para a direita. */
.tv__head { display: flex; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; flex-wrap: wrap; }
.tv__head > div { flex: 1 1 420px; min-width: 0; }
.tv__head .section-title { margin-top: 12px; }
.tv__sub { margin-top: 12px; color: rgba(255,255,255,.72); font-size: 17px; max-width: 52ch; }
.tv__channel { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; }
/* A lista acompanha exatamente a altura do player: os 4 itens dividem
   o espaço da coluna, em vez de sobrar folga embaixo. */
.tv__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: stretch; }
.tv__player { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; background: #000; box-shadow: var(--sh-lg); }
.tv__player iframe { width: 100%; height: 100%; border: 0; display: block; }
.tv__placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 24px;
  background: linear-gradient(140deg, #2A2421 0%, #17130F 100%);
}
.tv__placeholder strong { font-family: var(--font-display); font-size: 19px; }
.tv__placeholder span:last-child { font-size: 13px; color: rgba(255,255,255,.55); }
.tv__play { width: 62px; height: 62px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-red); }
.tv__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; height: 100%; }
.tv__list > li { flex: 1 1 0; min-height: 0; display: flex; }
.tv__item { flex: 1; }
.tv__item {
  width: 100%; display: flex; align-items: center; gap: 12px; text-align: left;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md); padding: 10px; color: #fff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.tv__item:hover { background: rgba(255,255,255,.12); transform: translateX(3px); }
.tv__item.is-active { background: rgba(227,6,19,.20); border-color: var(--red); }
.tv__thumb {
  flex: 0 0 84px; width: 84px; height: 50px; border-radius: 8px; overflow: hidden;
  background: rgba(255,255,255,.10); display: grid; place-items: center; color: rgba(255,255,255,.55);
}
.tv__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tv__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tv__meta strong { font-size: 14px; font-weight: 700; line-height: 1.25; }
.tv__meta small { font-size: 12px; color: rgba(255,255,255,.55); }

/* ============================================================
   GRUPOS VIP DE WHATSAPP
   ============================================================ */
.zap { background: var(--yellow); }
.zap__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.zap .eyebrow { color: var(--red); }
.zap .eyebrow::before { background: var(--ink); }
.zap__title { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 42px); font-weight: 900; margin-top: 12px; color: var(--ink); line-height: 1.02; }
.zap__sub { margin-top: 16px; font-size: 16px; color: var(--ink-2); line-height: 1.55; max-width: 46ch; }
.zap__groups { display: flex; flex-direction: column; gap: 12px; }
.zap__card {
  display: flex; align-items: center; gap: 14px; background: #fff; border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .25s ease;
}
.zap__card:hover { transform: translateX(4px); box-shadow: var(--sh-md); }
.zap__ic { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; }
.zap__meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.zap__meta strong { font-family: var(--font-display); font-size: 17px; font-weight: 800; }
.zap__meta small { font-size: 13px; color: var(--ink-3); }
.zap__arrow { flex: 0 0 auto; color: var(--red); }
.zap__note { font-size: 13px; color: var(--ink-2); margin-top: 4px; }
.zap__note a { font-weight: 800; text-decoration: underline; }

/* ============================================================
   CTA POR DISPOSITIVO (app no mobile · cadastro no desktop)
   ============================================================ */
.devcta__inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.devcta__title { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; margin-top: 12px; line-height: 1.04; }
.devcta__sub { margin-top: 14px; font-size: 16px; line-height: 1.55; max-width: 48ch; }
.devcta__btns { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.devcta--cadastro { background: var(--cloud); }
.devcta--cadastro .devcta__sub { color: var(--ink-2); }
.devcta--app { background: linear-gradient(150deg, var(--ink) 0%, #2A2421 100%); color: #fff; }
.devcta--app .devcta__sub { color: rgba(255,255,255,.78); }
.devcta__ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.devcta__ghost:hover { color: var(--yellow); border-color: var(--yellow); }

/* ============================================================
   NEWSLETTER (legado)
   ============================================================ */
.newsletter { background: var(--yellow); }
.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.newsletter .eyebrow { color: var(--red); }
.newsletter .eyebrow::before { background: var(--ink); }
.newsletter__title { font-size: clamp(26px, 3.4vw, 42px); font-weight: 900; margin-top: 12px; color: var(--ink); }
.newsletter__form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; position: relative; }
.newsletter__form input {
  flex: 1; min-width: 180px; border: 2px solid transparent; background: #fff; border-radius: var(--r-pill);
  padding: 16px 22px; font-family: var(--font-body); font-size: 15px; outline: none; color: var(--ink);
  transition: border-color .2s ease; box-shadow: var(--sh-sm);
}
.newsletter__form input:focus { border-color: var(--red); }
.newsletter__submit {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; border: none; background: var(--red);
  color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: var(--sh-red);
  transition: transform .2s ease, filter .2s ease;
}
.newsletter__submit:hover { transform: scale(1.06); filter: brightness(1.05); }
.newsletter__err { flex-basis: 100%; color: var(--red-dark); font-weight: 700; font-size: 14px; background: #fff; padding: 6px 14px; border-radius: 8px; }
.newsletter__done { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: var(--r-lg); padding: 22px 26px; box-shadow: var(--sh-md); }
.newsletter__check { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; background: #138A3E; color: #fff; display: grid; place-items: center; font-size: 22px; font-weight: 900; }
.newsletter__done strong { font-size: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.mm-footer { background: var(--red-dark); color: rgba(255,255,255,.85); }
.mm-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-block: clamp(48px, 6vw, 72px) 40px; }
.mm-footer .mm-logo { background: #fff; padding: 10px 14px; border-radius: var(--r-md); box-shadow: var(--sh-md); display: inline-flex; }
.mm-footer .mm-logo img { height: 74px; }
.mm-footer__tag { margin: 18px 0 22px; font-size: 14px; line-height: 1.55; max-width: 34ch; color: rgba(255,255,255,.8); }
.mm-footer__social { display: flex; gap: 10px; }
.mm-soc--foot { background: rgba(255,255,255,.14); }
.mm-soc--foot:hover { background: var(--yellow); color: var(--red); }
.mm-footer__col h4 { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.mm-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.mm-footer__col a { font-size: 15px; color: rgba(255,255,255,.82); transition: color .18s ease; }
.mm-footer__col a:hover { color: var(--yellow); }
.mm-footer__col .btn--white { color: var(--ink) !important; }
.mm-footer__col .btn--white:hover { color: var(--red) !important; filter: none; }

.mm-footer__pay { display: flex; flex-wrap: wrap; gap: 36px; padding-block: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.mm-pay-group { display: flex; flex-direction: column; gap: 10px; }
.mm-pay-group > span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.6); }
.mm-pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.mm-paychip { background: #fff; color: var(--ink); font-weight: 800; font-size: 12px; font-family: var(--font-display); padding: 7px 12px; border-radius: 7px; box-shadow: var(--sh-sm); }
.mm-pay-note { flex: 1; min-width: 260px; align-self: center; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.62); max-width: 60ch; }
.mm-pay-note a { color: var(--yellow); font-weight: 700; text-decoration: underline; }

.mm-footer__legal { background: var(--red-ink); padding-block: 20px; }
.mm-footer__legal p { font-size: 12px; line-height: 1.55; color: rgba(255,255,255,.6); }
.mm-footer__bar { background: var(--yellow); color: var(--ink); }
.mm-footer__bar-row { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; font-size: 13px; font-weight: 600; }
.mm-footer__bar-links { display: flex; gap: 20px; }
.mm-footer__bar-links a { font-weight: 700; }
.mm-footer__bar-links a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mm-search__btn { display: none; }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter__inner { grid-template-columns: 1fr; }
  .ofertas__grid { grid-template-columns: repeat(3, 1fr); }
  .tv__grid { grid-template-columns: 1fr; }
  .tv__list { flex-direction: row; overflow-x: auto; padding-bottom: 6px; }
  .tv__item { min-width: 260px; }
}

@media (max-width: 860px) {
  .mm-header__nav { display: none; }
  .mm-burger { display: flex; }
  .mm-search { margin-left: 0; }
  /* Banner baixo demais para sobrepor: arte em altura natural e cards abaixo */
  .hero__bg { height: auto; }
  .hero__slide picture { height: auto; }
  .hero__banner { height: auto; object-fit: fill; }
  .hero__cards-wrap { position: static; padding-block: 16px 4px; margin-inline: auto; }
  .hero__cards { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .clube__grid, .banner-app { grid-template-columns: 1fr; }
  .clube__media { order: -1; }
  .banner-app__slot { display: none; }
  .mm-footer__top { grid-template-columns: 1fr 1fr; }
  .mm-footer__brand { grid-column: 1 / -1; }
  .zap__inner { grid-template-columns: 1fr; gap: 28px; }
  .tv__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .mm-ribbon-msg { display: none; }
  .mm-header__ribbon-row { justify-content: flex-end; }
  .mm-header__main { gap: 14px; }
  .dif-grid { grid-template-columns: 1fr; }
  .mm-footer__top { grid-template-columns: 1fr; }
  .mm-footer__bar-row { flex-direction: column; gap: 8px; text-align: center; }
  .hero__cards { width: 100%; gap: 12px; }
  .ofertas__grid { grid-template-columns: repeat(2, 1fr); }
  .devcta__btns .btn { width: 100%; }
}

/* ============================================================
   CONFETTI BUTTON
   ============================================================ */
.confetti-wrap {
  position: relative;
  display: inline-block;
}

.confetti-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: 50%;
  left: 50%;
  pointer-events: none;
  animation: confetti-burst 0.85s ease-out forwards;
}

@keyframes confetti-burst {
  0% {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--cx), var(--cy)) scale(0) rotate(var(--cr));
    opacity: 0;
  }
}

/* Capa do vídeo em destaque — o player só carrega no clique */
.tv__capa {
  position: relative; width: 100%; height: 100%; padding: 0; border: 0;
  display: block; background: #000; overflow: hidden; cursor: pointer; text-align: left;
}
.tv__capa img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.tv__capa:hover img { transform: scale(1.04); }
.tv__capa__sombra {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.1) 100%);
}
.tv__play--grande {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 78px; height: 78px; transition: transform .2s ease, filter .2s ease;
}
.tv__capa:hover .tv__play--grande { transform: translate(-50%,-50%) scale(1.09); filter: brightness(1.1); }
.tv__capa__txt { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; display: flex; flex-direction: column; gap: 5px; }
.tv__capa__txt strong { font-family: var(--font-display); font-size: clamp(17px, 2vw, 22px); line-height: 1.2; color: #fff; }
.tv__capa__txt small { font-size: 12.5px; color: rgba(255,255,255,.65); }
.tv__selo {
  align-self: flex-start; background: var(--red); color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 3px;
}
.tv__placeholder code { background: rgba(255,255,255,.12); padding: 2px 7px; border-radius: 5px; font-size: 12.5px; }

/* Marca de play — deixa claro que thumb e capa são vídeos */
.tv__thumb { position: relative; }
.tv__thumb__play {
  position: absolute; inset: 0; margin: auto;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(227,6,19,.94); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.45);
  transition: transform .18s ease, background .18s ease;
}
.tv__thumb__play svg { margin-left: 1px; }
.tv__item:hover .tv__thumb__play { transform: scale(1.14); background: var(--red); }

/* Garante que capa, play e legenda fiquem acima da imagem */
.tv__capa img { position: relative; z-index: 0; }
.tv__capa__sombra { z-index: 1; }
.tv__capa__txt { z-index: 2; }
.tv__play--grande {
  z-index: 3;
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 6px 22px rgba(0,0,0,.45);
}
.tv__play--grande svg { margin-left: 3px; }
