/* ══════════════════════════════════════════════
   MIGA✦LAB — croissanteria-boutique candy pastel
   Sistema visual: creme + marrom + 6 pastéis,
   fitas marquee, flores escalopadas, stickers
   ══════════════════════════════════════════════ */

:root {
  --cream:   #F8F1DE;
  --cream-2: #FFFBF0;
  --brown:   #4A2617;
  --brown-2: #6B3A20;
  --blue:    #B9DBFD;
  --lilac:   #C9CAF8;
  --pink:    #FF95C3;
  --pink-soft: #FFC3DC;
  --orange:  #F6700F;
  --yellow:  #F9E47C;
  --lime:    #D6DE67;

  --font-disp: 'Bagel Fat One', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius-panel: 30px;
  --radius-card: 22px;
}

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

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.section { position: relative; overflow: hidden; }

/* reveals — visíveis por padrão; JS assume quando GSAP carrega */
body:not(.no-js) .rv { opacity: 0; transform: translateY(26px); }

/* ══════════ LOADER ══════════ */
.loader {
  position: fixed; inset: 0; z-index: 90;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.2rem;
  transition: opacity .5s ease, visibility .5s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__flower { width: 84px; height: 84px; color: var(--pink); animation: spin 3.2s linear infinite; }
.loader__flower svg { width: 100%; height: 100%; }
.loader__word { font-family: var(--font-disp); font-size: 1.6rem; color: var(--brown); }
.loader__word span { color: var(--orange); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════ NAV ══════════ */
.nav {
  position: relative; z-index: 20;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
}
.nav__logo { font-family: var(--font-disp); font-size: 1.55rem; letter-spacing: .01em; }
.nav__star { color: var(--orange); }
.nav__addr {
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  opacity: .75; margin-right: auto;
}
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-weight: 800; font-size: .93rem; letter-spacing: .02em;
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: border-color .25s ease;
}
.nav__links a:hover { border-color: var(--pink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 900; text-transform: uppercase;
  letter-spacing: .06em; font-size: .88rem;
  padding: .8em 1.7em; border-radius: 999px;
  border: none; cursor: pointer;
  transition: scale .25s cubic-bezier(.34,1.56,.64,1), rotate .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.btn--lime { background: var(--lime); color: var(--brown); }
.btn:hover { scale: 1.06; rotate: -1.5deg; box-shadow: 0 8px 22px rgba(74, 38, 23, .18); }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span { width: 26px; height: 3px; border-radius: 3px; background: var(--brown); transition: transform .3s ease; }

/* menu mobile */
.menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--pink);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.menu nav { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.menu a { font-family: var(--font-disp); font-size: 2.2rem; color: var(--brown); }
.menu__cta { font-size: 1.4rem !important; opacity: .8; }
.menu__foot { position: absolute; bottom: 2rem; font-weight: 800; font-size: .9rem; color: var(--brown); }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(1rem, 4vh, 3rem) 1rem 6rem;
  text-align: center;
}

.hero__blob { position: absolute; border-radius: 52% 48% 55% 45% / 55% 52% 48% 45%; z-index: 0; }
.hero__blob--yellow {
  width: clamp(340px, 52vw, 760px); height: clamp(300px, 44vw, 640px);
  background: var(--yellow); opacity: .75;
  top: 22%; left: 50%; transform: translateX(-54%) rotate(-8deg);
}
.hero__blob--orange {
  width: clamp(200px, 30vw, 440px); height: clamp(170px, 24vw, 350px);
  background: var(--orange); opacity: .9;
  top: 34%; right: 6%; transform: rotate(14deg);
  border-radius: 62% 38% 55% 45% / 48% 62% 38% 52%;
}

.hero__title {
  position: relative; z-index: 2;
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(3.4rem, 12.5vw, 11rem);
  line-height: .92; letter-spacing: .005em;
  margin-top: 2vh;
  display: flex; flex-direction: column;
}
.hero__line--2 { margin-left: clamp(2rem, 14vw, 13rem); }

.hero__fig {
  position: absolute; z-index: 3;
  top: clamp(8rem, 20vh, 12rem); left: 50%;
  width: clamp(280px, 40vw, 560px);
  transform: translateX(-52%);
  filter: drop-shadow(0 24px 40px rgba(74, 38, 23, .22));
}
.hero__fig img { width: 100%; height: auto; }

.crumb { position: absolute; z-index: 4; background: var(--brown-2); }
.crumb--1 { width: 22px; height: 16px; top: 24%; left: 22%; border-radius: 58% 42% 50% 50%; background: var(--orange); }
.crumb--2 { width: 14px; height: 12px; top: 30%; right: 24%; border-radius: 45% 55% 60% 40%; }
.crumb--3 { width: 28px; height: 20px; top: 56%; left: 16%; border-radius: 50% 50% 42% 58%; }
.crumb--4 { width: 18px; height: 14px; top: 62%; right: 18%; border-radius: 60% 40% 55% 45%; background: var(--orange); }

.tag {
  position: absolute; z-index: 5;
  background: var(--cream-2); color: var(--brown);
  font-weight: 800; font-size: .85rem; letter-spacing: .02em;
  padding: .55em 1.1em; border-radius: 12px;
  box-shadow: 0 6px 18px rgba(74, 38, 23, .14);
}
.tag--1 { top: 21%; left: 10%; transform: rotate(-7deg); background: var(--lilac); }
.tag--2 { top: 44%; right: 8%; transform: rotate(5deg); }
.tag--3 { top: 63%; left: 9%; transform: rotate(4deg); background: var(--pink-soft); }
.tag--4 { top: 70%; right: 12%; transform: rotate(-5deg); background: var(--yellow); }

.hero__sub {
  position: relative; z-index: 6;
  max-width: 46ch; font-weight: 600;
  margin-top: clamp(16rem, 34vw, 26rem);
}
.hero__cta { margin-top: 1.6rem; position: relative; z-index: 6; }

.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 6; width: 58px; height: 58px; color: var(--pink-soft);
  display: grid; place-items: center;
}
.hero__scroll svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.hero__scroll span { position: relative; font-size: 1.3rem; font-weight: 900; color: var(--brown); animation: bob 1.6s ease-in-out infinite; }

@keyframes bob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }

/* ══════════ FITAS MARQUEE ══════════ */
.tape-wrap { overflow: hidden; width: 100%; }
.tape {
  position: relative; z-index: 10;
  width: 108vw; margin-left: -4vw;
  padding: .55rem 0;
  overflow: hidden;
}
.tape--pink   { background: var(--pink);   transform: rotate(-2.2deg); margin-top: -1.4rem; }
.tape--yellow { background: var(--yellow); transform: rotate(1.8deg);  margin-block: -1rem; }
.tape--orange { background: var(--orange); transform: rotate(-1.6deg); margin-block: -1rem; }
.tape__track { display: flex; width: max-content; animation: tape-run 36s linear infinite; }
.tape--reverse .tape__track { animation-direction: reverse; }
.tape__track span {
  font-family: var(--font-disp); font-size: 1.05rem; letter-spacing: .08em;
  color: var(--brown); white-space: nowrap;
}
.tape--orange .tape__track span { color: var(--cream); }

@keyframes tape-run { to { transform: translateX(-50%); } }

/* ══════════ MANIFESTO ══════════ */
.manifesto {
  padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 6vw, 6rem);
  text-align: center;
}
.manifesto__title {
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(2.5rem, 7.6vw, 6.6rem);
  line-height: 1.06;
  display: flex; flex-direction: column; align-items: center; gap: .2em;
}
.mline { display: inline-flex; align-items: center; gap: .35em; flex-wrap: wrap; justify-content: center; }
.mline--arrows i {
  font-style: normal; font-family: var(--font-body); font-weight: 400;
  font-size: .42em; transform: translateY(-.15em);
}

.spin-badge { display: inline-block; width: .95em; height: .95em; vertical-align: middle; }
.spin-badge svg { width: 100%; height: 100%; overflow: visible; }
.spin-badge svg g:first-of-type,
.badge-50 svg g, .quiz__badge svg g { transform-origin: 60px 60px; animation: spin 16s linear infinite; }
.spin-badge text, .badge-50 text, .quiz__badge text {
  font-family: var(--font-body); font-weight: 800; text-transform: uppercase;
}
.badge-50__num { font-family: var(--font-disp) !important; }

.chip--blue {
  display: inline-flex; align-items: center; gap: .45em;
  background: var(--blue); border-radius: 999px;
  padding: .3em .8em;
  font-family: var(--font-body); font-weight: 800; font-size: .32em;
  letter-spacing: .02em; text-transform: lowercase;
  vertical-align: middle;
}
.chip--blue svg { width: 2.2em; height: 1.4em; }

.blob-note {
  display: inline-block;
  background: var(--lime); border-radius: 3em;
  padding: .9em 1.2em; transform: rotate(-7deg);
  font-family: var(--font-body); font-weight: 800; font-size: .26em;
  line-height: 1.25; letter-spacing: .02em; text-transform: lowercase;
}

.stamp {
  position: absolute; z-index: 3;
  background: var(--lilac); color: var(--brown);
  font-weight: 800; font-size: .92rem; line-height: 1.3; text-align: center;
  padding: 1.1rem 1.4rem; border-radius: 10px;
  outline: 2px dashed var(--cream); outline-offset: -7px;
}
.stamp--lilac { top: 12%; left: clamp(.5rem, 6vw, 7rem); transform: rotate(-7deg); }

.ticket {
  position: absolute; z-index: 3;
  background: var(--brown); color: var(--cream);
  font-family: var(--font-disp); font-size: .95rem; line-height: 1.35; text-align: center;
  padding: 1.1rem 1.5rem; border-radius: 14px;
  transform: rotate(6deg);
  top: 76%; right: clamp(.5rem, 4vw, 4.5rem);
}

/* ══════════ BANDAS + PAINÉIS ══════════ */
.band { padding: clamp(3rem, 8vh, 6rem) clamp(1rem, 5vw, 5rem); }
.band--lilac { background: var(--lilac); }
.band--blue { background: var(--blue); }

.panel {
  background: var(--cream);
  border: 1.5px solid var(--pink);
  border-radius: var(--radius-panel);
  padding: clamp(1.8rem, 4.5vw, 4rem);
  max-width: 1240px; margin-inline: auto;
}
.panel--soft { background: var(--cream-2); }

.panel__head {
  position: relative;
  display: grid; grid-template-columns: 1fr auto;
  gap: 1.2rem 2rem; align-items: start;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.panel__title {
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: .98;
}
.panel__num { font-family: var(--font-disp); font-size: 1.4rem; opacity: .85; }
.panel__lead { grid-column: 1 / -1; max-width: 56ch; font-weight: 600; }

/* sabores */
.flavors {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.9rem, 2vw, 1.6rem);
}
.flavor {
  background: var(--cream-2); border-radius: var(--radius-card);
  padding: 1.1rem 1.1rem 1.4rem;
  transition: translate .3s cubic-bezier(.34,1.56,.64,1), rotate .3s cubic-bezier(.34,1.56,.64,1);
}
.flavor:hover { translate: 0 -6px; rotate: -1deg; }
.flavor__ph {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden; margin-bottom: 1rem;
}
.flavor__ph img { width: 100%; height: 100%; object-fit: cover; }
.flavor__ph--mora  { background: var(--pink-soft); }
.flavor__ph--nila  { background: #FBEBB4; }
.flavor__ph--pista { background: #E7EDA9; }
.flavor__ph--cara  { background: #F8C68A; }
.flavor h3 { font-family: var(--font-disp); font-weight: 400; font-size: 1.9rem; margin-bottom: .3rem; }
.flavor p { font-size: .92rem; font-weight: 600; opacity: .85; min-height: 3em; }
.flavor__price {
  display: inline-block; margin-top: .8rem;
  font-weight: 900; font-size: .9rem;
  padding: .35em 1em; border-radius: 999px;
}
.flavor--pink .flavor__price   { background: var(--pink-soft); }
.flavor--yellow .flavor__price { background: var(--yellow); }
.flavor--lime .flavor__price   { background: var(--lime); }
.flavor--orange .flavor__price { background: #F8C68A; }

/* bebidas */
.drinks { margin-top: clamp(2.5rem, 6vw, 4rem); }
.drinks__title {
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.6rem;
}
.drinks__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.9rem, 2vw, 1.6rem);
}
.drink {
  background: var(--pink); border-radius: 18px;
  padding: 1.4rem 1.2rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: .6rem;
  transition: translate .3s cubic-bezier(.34,1.56,.64,1), rotate .3s cubic-bezier(.34,1.56,.64,1);
}
.drink:hover { translate: 0 -5px; rotate: 1deg; }
.drink svg { width: 46px; height: 46px; }
.drink h4 { font-family: var(--font-disp); font-weight: 400; font-size: 1.15rem; }
.drink span { font-weight: 900; font-size: .88rem; }

.flower-btn {
  position: relative; display: inline-grid; place-items: center;
  width: 54px; height: 54px; color: var(--pink);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.flower-btn svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.flower-btn i { position: relative; font-style: normal; font-size: 1.2rem; color: var(--brown); }
.flower-btn--big { width: 76px; height: 76px; color: var(--lime); }
.flower-btn--big i { font-size: 1.6rem; }

/* ══════════ MOMENTOS ══════════ */
.momentos {
  padding: clamp(5rem, 13vh, 9rem) 1rem;
  text-align: center;
}
.momentos::before {
  content: ""; position: absolute; z-index: 0;
  width: clamp(400px, 60vw, 900px); height: clamp(400px, 60vw, 900px);
  top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(12deg);
  background: var(--cream-2);
  border-radius: 42% 58% 50% 50% / 55% 45% 55% 45%;
}
.momentos__num {
  position: absolute; top: 2.5rem; right: clamp(1.5rem, 6vw, 5rem);
  font-family: var(--font-disp); font-size: 1.4rem; z-index: 4;
}
.momentos__title {
  position: relative; z-index: 2;
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(3.2rem, 10.5vw, 9rem);
  line-height: .96; color: var(--pink);
  display: flex; flex-direction: column;
}

.stk {
  position: absolute; z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: .8rem 1rem;
  border-radius: 16px; border: 3px solid var(--cream-2);
  box-shadow: 0 8px 22px rgba(74, 38, 23, .16);
  font-weight: 800; font-size: .82rem; line-height: 1.2; color: var(--brown);
  max-width: 150px;
  transform: rotate(var(--stk-r, 0deg));
  transition: scale .3s cubic-bezier(.34,1.56,.64,1);
}
.stk:hover { scale: 1.08; }
.stk svg { width: 54px; height: 40px; }
.stk--1 { background: var(--yellow); top: 20%; left: 12%; }
.stk--2 { background: var(--lilac); top: 16%; right: 13%; }
.stk--3 { background: var(--pink-soft); top: 46%; left: 7%; }
.stk--4 { background: var(--lime); top: 52%; right: 7%; }
.stk--5 { background: var(--blue); bottom: 12%; left: 16%; }
.stk--6 { background: var(--cream-2); bottom: 9%; right: 15%; }

/* ══════════ DEPOIMENTOS ══════════ */
.badge-50 {
  position: absolute; top: 2.4rem; right: .4rem;
  width: clamp(96px, 12vw, 130px); height: clamp(96px, 12vw, 130px);
}
.badge-50 svg { width: 100%; height: 100%; overflow: visible; }

.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
.quote {
  background: var(--cream); border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.2rem; justify-content: space-between;
}
.quote p { font-weight: 800; font-size: 1.12rem; line-height: 1.45; }
.quote footer {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; font-weight: 700; opacity: .85;
}
.quote__dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-disp); font-size: 1.05rem;
}
.quote__dot--pink { background: var(--pink); }
.quote__dot--lilac { background: var(--lilac); }
.quote__dot--lime { background: var(--lime); }

/* ══════════ QUIZ ══════════ */
.quiz {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.2rem, 6vw, 6rem);
  max-width: 1340px; margin-inline: auto;
}
.quiz__collage { position: relative; min-height: 420px; }
.quiz__fig {
  width: min(86%, 460px); margin-inline: auto;
  border-radius: 46% 54% 48% 52% / 42% 44% 56% 58%;
  overflow: hidden; background: var(--pink-soft);
  border: 1.5px solid var(--pink);
  aspect-ratio: 4 / 5;
}
.quiz__fig img { width: 100%; height: 100%; object-fit: cover; }
.quiz__badge {
  position: absolute; top: -4%; right: 4%;
  width: clamp(90px, 11vw, 120px); height: clamp(90px, 11vw, 120px);
}
.quiz__badge svg { width: 100%; height: 100%; overflow: visible; }

.coupon {
  position: absolute; bottom: 2%; left: 0;
  background: var(--lime);
  background-image: radial-gradient(rgba(255, 251, 240, .75) 2.5px, transparent 3px);
  background-size: 24px 24px;
  color: var(--brown);
  font-weight: 700; font-size: .95rem; line-height: 1.35; text-align: center;
  padding: 1.4rem 1.8rem;
  border-radius: 14px;
  outline: 2px dashed var(--brown); outline-offset: -8px;
  transform: rotate(var(--stk-r, -6deg));
}
.coupon b { font-size: 1.05rem; }

.quiz__chip {
  position: absolute;
  font-family: var(--font-disp); font-size: 1.1rem;
  background: var(--cream-2); border: 1.5px solid var(--pink);
  padding: .3em .8em; border-radius: 999px;
}
.quiz__chip--mora { top: 12%; left: -2%; transform: rotate(-9deg); }
.quiz__chip--pista { bottom: 22%; right: -1%; transform: rotate(7deg); background: var(--lime); border-color: var(--lime); }

.quiz__body { position: relative; }
.quiz__body .momentos__num { position: static; display: block; margin-bottom: .6rem; }
.quiz__title {
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: .96;
  display: flex; flex-direction: column;
}
.pline--brown { color: var(--brown); }
.quiz__lead { max-width: 46ch; font-weight: 600; margin-top: 1.4rem; }
.quiz__cta {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-top: 2rem;
  font-family: var(--font-disp); font-size: 1.5rem;
}
.quiz__cta:hover .flower-btn { transform: rotate(90deg) scale(1.1); }

/* ══════════ FOOTER ══════════ */
.footer {
  background: var(--cream);
  padding: clamp(4rem, 9vh, 6rem) clamp(1.2rem, 5vw, 5rem) 2rem;
  border-top: 1.5px solid var(--pink);
}
.footer__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1240px; margin-inline: auto;
}
.footer__col h3 {
  font-family: var(--font-disp); font-weight: 400; font-size: 1.3rem;
  margin-bottom: .6rem; color: var(--orange);
}
.footer__col p { font-weight: 600; font-size: .95rem; }
.footer__col a { border-bottom: 2px solid var(--pink); transition: border-color .25s; }
.footer__col a:hover { border-color: var(--orange); }
.footer__col em { font-style: italic; opacity: .7; font-size: .85rem; }

.footer__mark {
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(4rem, 17vw, 15rem);
  line-height: 1.12; text-align: center;
  margin-top: clamp(3rem, 8vh, 5rem);
  color: var(--brown);
}
.footer__mark span { color: var(--pink); }
.footer__legal {
  text-align: center; font-size: .82rem; font-weight: 700;
  opacity: .65; margin-top: 2.4rem;
}

/* ══════════ RESPONSIVO ══════════ */
@media (max-width: 1100px) {
  .flavors, .drinks__grid { grid-template-columns: repeat(2, 1fr); }
  .flavor p { min-height: 0; }
}

@media (max-width: 900px) {
  .nav__addr, .nav__links, .nav__cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .quiz { grid-template-columns: 1fr; }
  .quiz__collage { min-height: 0; margin-top: 1rem; }
  .quotes { grid-template-columns: 1fr; }
  .badge-50 { top: auto; bottom: -.5rem; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .stamp--lilac { top: 4%; }
  .ticket { top: auto; bottom: 4%; }
}

@media (max-width: 640px) {
  .momentos { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
  .momentos__num { position: static; align-self: flex-end; margin-right: 1.5rem; }
  .stk { position: static; max-width: none; flex-direction: row; padding: .55rem .9rem; }
  .stk svg { width: 40px; height: 30px; }
  .hero { min-height: 0; padding-bottom: 5rem; }
  .hero__sub { margin-top: clamp(13rem, 60vw, 17rem); }
  .hero__fig { top: 9.5rem; width: min(76vw, 340px); }
  .tag { font-size: .72rem; }
  .tag--1 { top: 16%; left: 4%; }
  .tag--2 { top: 27%; right: 3%; }
  .tag--3 { top: 37%; left: 3%; }
  .tag--4 { top: 46%; right: 4%; }
  .stamp, .ticket { position: static; display: inline-block; margin: 1rem auto; }
  .manifesto { display: flex; flex-direction: column; align-items: center; }
  .flavors, .drinks__grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .flavor h3 { font-size: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .quiz__chip--mora { left: 2%; }
  .quiz__chip--pista { right: 2%; }
  .coupon { position: static; display: inline-block; margin-top: 1rem; }
}

@media (max-width: 420px) {
  .flavors, .drinks__grid { grid-template-columns: 1fr; }
}

/* ══════════ MOVIMENTO REDUZIDO ══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tape__track { animation: none; }
  .loader__flower, .hero__scroll svg, .hero__scroll span,
  .spin-badge svg g:first-of-type, .badge-50 svg g, .quiz__badge svg g { animation: none; }
  body:not(.no-js) .rv { opacity: 1; transform: none; }
}
