/* ════════════════════════════════════════════════════════════════
   MUNDO HIDRATAÇÃO — Sales Page
   Paleta extraída do logo (rosa + azul + verde)
   ════════════════════════════════════════════════════════════════ */

:root {
  --pink: #E63A6B;
  --pink-d: #C82A55;
  --pink-l: #FFD5E2;
  --pink-bg: #FFF5F7;

  --blue: #3FB0F2;
  --blue-d: #1E8FCC;
  --blue-l: #D4F0FF;

  --green: #16A34A;
  --green-d: #0E7A36;

  --red: #E11D48;
  --red-d: #B91C3B;

  --ink: #1A1A1A;
  --gray: #6B7280;
  --gray-l: #9CA3AF;
  --gray-lighter: #E5E7EB;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Quicksand', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(230, 58, 107, 0.08);
  --shadow-md: 0 12px 32px rgba(230, 58, 107, 0.12);
  --shadow-lg: 0 24px 60px rgba(230, 58, 107, 0.18);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--pink-bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--pink); color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   INTRO TRIUNFAL — open animation (sparkles + glow + drops)
   ════════════════════════════════════════════════════════════════ */
#intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #2a1421 0%, #0d0612 70%, #000 100%);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
#intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* A página de produto deve aparecer imediatamente; animações de abertura
   aumentam abandono em tráfego frio. */
#intro { display: none; }

.pdp-assurances {
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Como usar ─────────────────────────────────────────────── */
#how-to-use {
  padding: 72px 20px;
  background: var(--white);
}
.how-grid {
  width: min(100%, 960px);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.how-card {
  padding: 28px 24px;
  border: 1px solid var(--gray-lighter);
  border-radius: 18px;
  background: var(--pink-bg);
}
.how-step {
  color: var(--pink);
  font-weight: 800;
  letter-spacing: .08em;
}
.how-card h3 { margin: 12px 0 6px; font-size: 1.12rem; }
.how-card p { color: var(--gray); font-size: .95rem; }
@media (max-width: 720px) {
  #how-to-use { padding: 52px 16px; }
  .how-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Background glow orbs */
.intro-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: introGlowIn 1.2s var(--ease) 0.2s forwards;
}
.intro-glow-pink {
  background: radial-gradient(circle, #E63A6B 0%, transparent 60%);
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
}
.intro-glow-blue {
  background: radial-gradient(circle, #3FB0F2 0%, transparent 60%);
  top: 50%; left: 70%;
  transform: translate(-50%, -50%);
  animation-delay: 0.4s;
}
@keyframes introGlowIn {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  60%  { opacity: 0.6; }
  100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1.1); }
}

/* Sparkles */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px var(--white), 0 0 24px var(--pink-l);
  opacity: 0;
  animation: sparkPop 1.4s var(--ease) infinite;
}
.spark:nth-child(1) { top: 20%; left: 15%;  animation-delay: 0.6s; }
.spark:nth-child(2) { top: 28%; left: 82%;  animation-delay: 0.9s; background: var(--pink-l); box-shadow: 0 0 12px var(--pink), 0 0 24px var(--pink); }
.spark:nth-child(3) { top: 70%; left: 18%;  animation-delay: 1.1s; background: var(--blue-l); box-shadow: 0 0 12px var(--blue), 0 0 24px var(--blue); }
.spark:nth-child(4) { top: 78%; left: 75%;  animation-delay: 1.3s; }
.spark:nth-child(5) { top: 12%; left: 50%;  animation-delay: 1.5s; background: #FFE08A; box-shadow: 0 0 12px #FFB800; }
.spark:nth-child(6) { top: 50%; left: 8%;   animation-delay: 1.0s; }
.spark:nth-child(7) { top: 60%; left: 92%;  animation-delay: 1.7s; background: var(--pink-l); box-shadow: 0 0 12px var(--pink); }
.spark:nth-child(8) { top: 38%; left: 35%;  animation-delay: 1.9s; }
@keyframes sparkPop {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* Words stage */
.intro-words {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
}
.iw {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 7vw, 96px);
  letter-spacing: -2px;
  line-height: 1;
  opacity: 0;
  filter: blur(20px);
  text-shadow: 0 0 40px currentColor;
}
.iw-1 { color: #FF6B95; animation: iwIn .45s var(--ease) .25s forwards, iwOut .35s ease-in 1.30s forwards; }
.iw-2 { color: #6AC5F7; animation: iwIn .45s var(--ease) .55s forwards, iwOut .35s ease-in 1.45s forwards; }
.iw-3 { color: var(--pink);
        background: linear-gradient(135deg, #FF6B95, #FFD700, var(--pink));
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: iwIn .45s var(--ease) .85s forwards, iwOut .35s ease-in 1.60s forwards;
        text-shadow: 0 0 80px var(--pink); }
@keyframes iwIn  { from { opacity: 0; filter: blur(20px); transform: scale(.7); } to { opacity: 1; filter: blur(0); transform: scale(1); } }
@keyframes iwOut { from { opacity: 1; filter: blur(0); transform: scale(1); } to { opacity: 0; filter: blur(14px); transform: scale(1.18); } }

/* Tagline */
.intro-tag {
  position: absolute;
  top: calc(50% + clamp(60px, 9vw, 110px));
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.6), 0 0 60px rgba(230, 58, 107, 0.5);
  opacity: 0;
  filter: blur(12px);
  white-space: nowrap;
  animation: tagIn .70s var(--ease) 1.10s forwards, tagOut .35s ease-in 1.85s forwards;
}
@keyframes tagIn  { to { opacity: 1; transform: translateX(-50%) translateY(0); filter: blur(0); } }
@keyframes tagOut { to { opacity: 0; filter: blur(8px); } }

/* Logo finale */
.intro-logo {
  position: absolute;
  opacity: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -1px;
  animation: logoIn .80s var(--ease) 2.00s forwards;
}
.il-mundo,
.il-hidratacao {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}
.il-mundo {
  color: var(--pink);
  text-shadow: 0 0 30px rgba(230, 58, 107, 0.6);
}
.il-hidratacao {
  color: var(--blue);
  text-shadow: 0 0 30px rgba(63, 176, 242, 0.6);
}
.il-flower {
  font-size: clamp(28px, 4vw, 50px);
  margin-left: 6px;
  animation: flowerSpin 3s linear 2.0s infinite;
  display: inline-block;
}
@keyframes logoIn {
  from { opacity: 0; filter: blur(12px); transform: translateY(20px) scale(.9); }
  to   { opacity: 1; filter: blur(0);   transform: translateY(0) scale(1); }
}
@keyframes flowerSpin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

/* Water drops falling at the end */
.drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.drop {
  position: absolute;
  top: -30px;
  width: 14px;
  height: 22px;
  background: linear-gradient(180deg, #6AC5F7, #3FB0F2);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(180deg);
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(63, 176, 242, 0.8));
  animation: dropFall 1.6s var(--ease) infinite;
}
.drop:nth-child(1) { left: 18%; animation-delay: 1.8s; }
.drop:nth-child(2) { left: 36%; animation-delay: 2.1s; }
.drop:nth-child(3) { left: 58%; animation-delay: 1.9s; background: linear-gradient(180deg, #FFB5CC, #E63A6B); filter: drop-shadow(0 0 8px rgba(230, 58, 107, 0.8)); }
.drop:nth-child(4) { left: 74%; animation-delay: 2.3s; }
.drop:nth-child(5) { left: 88%; animation-delay: 2.0s; background: linear-gradient(180deg, #FFB5CC, #E63A6B); filter: drop-shadow(0 0 8px rgba(230, 58, 107, 0.8)); }
@keyframes dropFall {
  0%   { top: -30px; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 110vh; opacity: 0; }
}

/* ── Reusable ──────────────────────────────────────────────── */
.grad-pink {
  background: linear-gradient(135deg, var(--pink) 0%, #FF6B95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-blue {
  background: linear-gradient(135deg, var(--blue) 0%, #6AC5F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #FF6B95 100%);
  color: var(--white);
  padding: 16px 32px;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(230, 58, 107, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 58, 107, 0.45);
}
.btn-xl {
  padding: 20px 44px !important;
  font-size: 17px !important;
}

/* ════════ TOP PROMO BAR (legado) ════════ */
.promo-bar {
  background: linear-gradient(90deg, var(--pink) 0%, #FF6B95 50%, var(--pink) 100%);
  color: var(--white);
  text-align: center;
  padding: 11px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.promo-icon { margin-right: 6px; }

/* ════════════════════════════════════════════════════════════════
   SITE HEADER — 3 tiers (timer + frete + nav)
   ════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tier {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease), opacity 0.3s var(--ease);
  overflow: hidden;
}
.tier-offer {
  background: linear-gradient(90deg, #DB4B70 0%, #E63A6B 50%, #DB4B70 100%);
  color: var(--white);
  padding: 10px 16px;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-height: 44px;
}
.offer-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.28);
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.timer-icon { font-size: 15px; line-height: 1; }

.tier-frete {
  background: #3B2A34;
  color: var(--white);
  padding: 14px 16px;
  flex-direction: column;
  gap: 2px;
  max-height: 80px;
}
.tier-frete.hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.frete-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.frete-sub {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  background: #C82A55;
  padding: 4px 14px;
  border-radius: 100px;
  margin-top: 6px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(200, 42, 85, 0.4);
}

.tier-nav {
  padding: 14px 24px;
  justify-content: space-between;
  gap: 20px;
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--gray-lighter);
}
.logo-round {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
}
.logo-round img { width: 100%; height: 100%; object-fit: cover; }
.logo-fallback-text {
  display: none;
  flex-direction: column;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}
.logo-fallback .logo-fallback-text { display: flex; }
.lf-line-1 { font-size: 11px; color: var(--pink-d); }
.lf-line-2 { font-size: 8px; color: var(--blue-d); margin-top: 1px; }

.search-bar {
  flex: 1;
  max-width: 720px;
  display: flex;
  align-items: center;
  background: var(--pink-bg);
  border: 1px solid var(--pink-l);
  border-radius: 100px;
  padding: 4px 4px 4px 22px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.search-bar:focus-within {
  border-color: var(--pink);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(230, 58, 107, 0.12);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 4px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
}
.search-bar input::placeholder { color: var(--gray-l); }
.search-bar button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gray-lighter);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
}
.search-bar button:hover { background: var(--pink); color: var(--white); }
.search-bar button svg { width: 18px; height: 18px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  background: transparent;
  transition: all 0.25s var(--ease);
  position: relative;
}
.nav-icon:hover { background: var(--pink-bg); color: var(--pink); }
.nav-icon svg { width: 22px; height: 22px; }
.nav-cart .cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--pink);
  color: var(--white);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 760px) {
  .tier-offer { font-size: 12px; padding: 8px 12px; gap: 8px; }
  .offer-timer { padding: 4px 10px; font-size: 12px; }
  .tier-frete { padding: 10px 12px; }
  .frete-main { font-size: 16px; }
  .frete-sub { font-size: 12px; }
  .tier-nav { padding: 10px 14px; gap: 10px; }
  .logo-round { width: 44px; height: 44px; }
  .search-bar { padding: 3px 3px 3px 16px; }
  .search-bar input { font-size: 13px; padding: 10px 4px; }
  .search-bar button { width: 34px; height: 34px; }
  .nav-actions { gap: 4px; }
  .nav-icon { width: 38px; height: 38px; }
  .nav-icon svg { width: 20px; height: 20px; }
}

/* ════════ NAV ════════ */
nav#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 245, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(230, 58, 107, 0.08);
}
.logo img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  display: inline-flex;
  gap: 4px;
}
.logo-mundo { color: var(--pink); }
.logo-hidratacao { color: var(--blue); }

.nav-cta {
  background: linear-gradient(135deg, var(--pink) 0%, #FF6B95 100%);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(230, 58, 107, 0.3);
  transition: transform 0.3s var(--ease);
}
.nav-cta:hover { transform: scale(1.05); }

/* ════════ HERO ════════ */
#hero {
  position: relative;
  padding: 80px 32px 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--pink-bg) 0%, #FFE9F1 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.bubble-1 { width: 320px; height: 320px; background: var(--pink-l); top: -60px; left: -80px; }
.bubble-2 { width: 280px; height: 280px; background: var(--blue-l); top: 20%; right: -60px; }
.bubble-3 { width: 240px; height: 240px; background: var(--pink-l); bottom: -40px; left: 30%; }
.bubble-4 { width: 200px; height: 200px; background: var(--blue-l); top: 50%; left: 20%; opacity: 0.4; }

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 58, 107, 0.08);
  color: var(--pink-d);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 58, 107, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230, 58, 107, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(230, 58, 107, 0.05); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--ink);
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 24px;
}

.hero-checks {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-acts {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stars {
  color: #FFB800;
  font-size: 16px;
  letter-spacing: 2px;
}
.rating-info {
  font-size: 12.5px;
  color: var(--gray);
}
.rating-info strong { color: var(--ink); font-weight: 700; }

/* Hero product card */
.hero-product {
  display: flex;
  justify-content: center;
}
.hero-product-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 32px 32px 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
  text-align: center;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease);
}
.hero-product-card:hover { transform: rotate(0deg) translateY(-6px); }
.hp-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
}
.hp-bottle svg { width: 180px; height: auto; }
.hp-meta { margin-top: 12px; }
.hp-price { font-size: 14px; color: var(--gray); }
.hp-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--pink);
  font-weight: 900;
  margin-top: 4px;
}
.hp-promo {
  font-size: 12px;
  color: var(--gray-l);
  margin-top: 4px;
}

/* ════════ TRUST BAR ════════ */
.trust-bar {
  background: var(--white);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: -32px auto 0;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 5;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon { font-size: 28px; }
.trust-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--pink);
  flex-shrink: 0;
}
.trust-icon-svg svg { width: 100%; height: 100%; }

/* ── PIX Banner (embaixo do MercadoLider) ── */
.pix-banner {
  margin-top: 16px;
  padding: 16px 20px;
  background: linear-gradient(90deg, #E9F0FF 0%, #F5E9F5 100%);
  border: 1px solid #DCE7FF;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pix-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A9CE8 0%, #2B7BC5 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 156, 232, 0.35);
}
.pix-copy { flex: 1; min-width: 0; line-height: 1.35; }
.pix-headline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.pix-sub {
  font-size: 12.5px;
  color: var(--gray);
  font-weight: 500;
}

@media (max-width: 480px) {
  .pix-banner { padding: 12px 14px; border-radius: 20px; gap: 12px; }
  .pix-circle { width: 44px; height: 44px; font-size: 11px; }
  .pix-headline { font-size: 13.5px; }
  .pix-sub { font-size: 11.5px; }
}
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}
.trust-item span {
  font-size: 12px;
  color: var(--gray);
}

/* ════════ SECTION HEAD ════════ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-head .lead {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
}

/* ════════ INGREDIENTES ════════ */
#ingredients {
  padding: 100px 32px;
  background: var(--white);
}
.ing-grid {
  max-width: 1100px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ing-card {
  background: linear-gradient(180deg, var(--pink-bg) 0%, var(--white) 100%);
  border: 2px solid var(--pink-l);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  text-align: left;
}
.ing-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: var(--shadow-md);
}
.ing-card-featured {
  background: linear-gradient(180deg, var(--blue-l) 0%, var(--white) 100%);
  border-color: var(--blue-l);
}
.ing-card-featured:hover { border-color: var(--blue); }
.ing-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}
.ing-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.ing-card > p {
  color: var(--gray);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.ing-card ul li {
  font-size: 13.5px;
  color: var(--ink);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}
.ing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* ════════ KIT SELECTION ════════ */
#kits {
  padding: 100px 32px 80px;
  background: var(--pink-bg);
}
.kits-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kit {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-lighter);
  border-radius: 16px;
  padding: 22px 26px 22px 60px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: block;
}
.kit:hover { border-color: var(--pink-l); transform: translateY(-2px); }
.kit input { position: absolute; opacity: 0; pointer-events: none; }
.kit-radio {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-l);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.kit-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: var(--pink);
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.kit input:checked ~ .kit-radio { border-color: var(--pink); }
.kit input:checked ~ .kit-radio::after { transform: translate(-50%, -50%) scale(1); }

.kit-featured {
  border-color: var(--red);
  background: #FFF8FA;
}
.kit-featured .kit-radio { border-color: var(--red); }
.kit-featured input:checked ~ .kit-radio::after { background: var(--red); }

.kit-tag-pill {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.kit-tag-best { background: var(--pink); }

.kit-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.kit-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.kit-sub {
  font-size: 13px;
  color: var(--gray);
}
.kit-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--pink);
  white-space: nowrap;
}
.kit-price-featured { color: var(--red); }

.frete-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--green);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-buy {
  width: 100%;
  max-width: 760px;
  margin: 32px auto 0;
  display: flex;
  padding: 20px 32px;
  font-size: 16px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.payment-icons span {
  background: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.5px;
  border: 1px solid var(--gray-lighter);
}

/* ════════ REVIEWS ════════ */
#reviews { padding: 100px 32px; background: var(--white); }
.reviews-grid {
  max-width: 1100px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--pink-bg);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}
.review-stars {
  color: #FFB800;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 14px;
}
.review > p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 500;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
}
.review-user strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}
.review-user span {
  font-size: 11.5px;
  color: var(--gray);
}

/* ════════ FAQ ════════ */
#faq { padding: 100px 32px; background: var(--pink-bg); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-lighter);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item[open] {
  border-color: var(--pink-l);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 26px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--pink);
  font-weight: 700;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 26px 22px;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ════════ FINAL CTA ════════ */
#final-cta { padding: 80px 32px; background: var(--white); }
.final-cta-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--blue-l) 100%);
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emoji-cloud {
  font-size: 48px;
  margin-bottom: 16px;
  animation: bobble 4s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-8px) rotate(5deg); }
}
.final-cta-card h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.final-cta-card p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-meta {
  margin-top: 20px;
  font-size: 12px;
  color: var(--gray);
}

/* ════════ FOOTER ════════ */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 32px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 280px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-links h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  font-size: 13.5px;
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--pink); }
.footer-base {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  text-align: center;
}

/* ════════ STICKY BUY BAR (mobile) ════════ */
.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.sticky-buy.visible { transform: translateY(0); }
.sticky-info { display: flex; flex-direction: column; }
.sticky-title {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sticky-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--pink);
}
.sticky-buy .btn { padding: 12px 22px; font-size: 14px; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  nav#nav { padding: 12px 20px; }
  .nav-cta { padding: 8px 16px; font-size: 12px; }

  #hero { padding: 48px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-inner .hero-content { order: 2; }
  .hero-inner .hero-product { order: 1; }
  .hero-h1 { font-size: 34px; }
  .hero-checks { grid-template-columns: 1fr; text-align: left; max-width: 340px; margin-left: auto; margin-right: auto; }
  .hero-acts { justify-content: center; flex-direction: column; }

  .trust-bar { grid-template-columns: 1fr 1fr; padding: 22px 20px; margin: -28px 20px 0; }
  .ing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 420px; }
  #ingredients, #kits, #reviews, #faq { padding: 64px 20px; }
  #kits { padding-bottom: 100px; }

  .kit { padding: 20px 24px 20px 56px; }
  .kit-title { font-size: 15.5px; }
  .kit-price { font-size: 20px; }
  .kit-title-row { flex-direction: column; align-items: flex-start; gap: 8px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sticky-buy { display: flex; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   NOVOS ELEMENTOS v2 — Stats, Price Reveal, Order Bump, Guarantee
   ════════════════════════════════════════════════════════════════ */

/* ── STATS COUNTERS ─────────────────────────── */
#stats {
  padding: 60px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-bg) 100%);
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: 16px;
  padding: 28px 20px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-featured {
  background: linear-gradient(135deg, var(--pink) 0%, #FF6B95 100%);
  color: var(--white);
  border-color: var(--pink);
  transform: scale(1.03);
}
.stat-n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-featured .stat-n { color: var(--white); }
.stat-l {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-featured .stat-l { color: rgba(255,255,255,0.9); }

/* ── PRICE REVEAL (grande, como no site atual) ─────── */
.price-reveal {
  max-width: 560px;
  margin: 32px auto 0;
  padding: 40px 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.price-old {
  font-size: 22px;
  color: var(--gray-l);
  text-decoration: line-through;
  margin-bottom: 6px;
}
.price-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 84px);
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 8px 0 14px;
}
.price-save {
  display: inline-block;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.price-warn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-d);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
}
.warn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--pink-d);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.price-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.price-tags.price-tags-left {
  justify-content: flex-start;
}
.pt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pt-pink {
  background: var(--pink-l);
  color: var(--pink-d);
  border: 1.5px solid var(--pink);
}
.pt-blue {
  background: var(--blue-l);
  color: var(--blue-d);
  border: 1.5px solid var(--blue);
}

.sub-h {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--ink);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 4px;
}

/* ── KIT INCLUDES (lista dentro do kit destacado) ── */
.kit-includes {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(230, 58, 107, 0.28);
  display: grid;
  gap: 6px;
}
.kit-includes li {
  font-size: 13.5px;
  color: var(--pink-d);
  font-weight: 500;
}

/* ── ORDER BUMP ──────────────────────────── */
.order-bump {
  display: block;
  position: relative;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 22px 24px 22px 60px;
  background: linear-gradient(135deg, #FFFAD1 0%, #FFF8E7 100%);
  border: 2px dashed #EAB308;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.order-bump:hover { background: #FFF6C7; transform: translateY(-2px); }
.order-bump input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ob-check {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 22px;
  height: 22px;
  border: 2px solid #CA8A04;
  border-radius: 4px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.ob-check::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.25s var(--ease);
}
.order-bump input:checked ~ .ob-check {
  background: #CA8A04;
  border-color: #CA8A04;
}
.order-bump input:checked ~ .ob-check::after {
  transform: translate(-50%, -50%) scale(1);
}
.ob-body { padding-right: 12px; }
.ob-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #713F12;
  margin-bottom: 6px;
}
.ob-title strong { color: #CA8A04; font-weight: 900; }
.ob-desc {
  font-size: 13.5px;
  color: #78550C;
  line-height: 1.55;
}
.ob-desc strong { color: #713F12; font-weight: 700; }
.ob-price {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: #CA8A04;
}

/* ── SECURE NOTE ─────────────────────────── */
.secure-note {
  max-width: 500px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  padding: 12px 16px;
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 8px;
}

/* ── GUARANTEE SECTION ───────────────────── */
#guarantee {
  padding: 60px 24px;
  background: var(--white);
}
.guarantee-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 32px;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 2px dashed var(--green);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
}
.guarantee-seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.28);
}
.guarantee-seal .num { font-size: 40px; }
.guarantee-seal .lbl { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; margin-top: 4px; }
.guarantee-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--green-d);
  margin-bottom: 10px;
}
.guarantee-card p { color: var(--ink); font-size: 15px; line-height: 1.6; }

/* ── RESPONSIVE (novos elementos) ────────── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-featured { transform: scale(1); }
  .stats-grid .stat-n { font-size: 36px; }
  .order-bump { padding: 22px 22px 22px 54px; }
  .ob-check { left: 18px; top: 22px; }
  .ob-price { position: static; text-align: right; margin-top: 10px; display: block; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .guarantee-seal { margin: 0 auto; }
  .price-reveal { padding: 32px 22px; }
  .price-tags { flex-direction: column; align-items: stretch; }
  .pt { justify-content: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   PDP LAYOUT — hero como pagina de produto (galeria + oferta)
   ════════════════════════════════════════════════════════════════ */
#hero.pdp {
  padding: 40px 24px 60px;
  background: var(--white);
  display: block;
}
.pdp-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── GALERIA ESQUERDA ── */
.pdp-gallery { position: sticky; top: 100px; }

.gallery-main {
  position: relative;
  background: var(--pink-l);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Setas do carrossel */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--pink);
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s var(--ease);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 4px;
}
.gallery-nav:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; padding-bottom: 4px; padding-left: 2px; }

/* Thumbnails */
.gallery-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.thumb {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 2px solid transparent;
  background: var(--pink-l);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
  overflow: hidden;
  opacity: 0.62;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb:hover { transform: translateY(-2px); opacity: 1; }
.thumb-active { border-color: var(--pink); opacity: 1; }

/* ── COLUNA DIREITA: Info + Oferta ── */
.pdp-info { min-width: 0; }

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--gray);
}
.pdp-rating .stars { color: var(--pink); font-size: 18px; letter-spacing: 2px; }
.pdp-rating strong { color: var(--ink); font-weight: 700; }
.pdp-rating .rating-count { color: var(--gray); }

.pdp-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pdp-title .brand { color: var(--ink); }

.pdp-sub {
  font-size: 15.5px;
  color: var(--gray);
  margin-bottom: 32px;
  font-weight: 500;
}

.pdp-price {
  margin-bottom: 24px;
}
.pdp-price .price-old {
  font-size: 20px;
  color: var(--gray-l);
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 500;
}
.pdp-price .price-big {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 68px);
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pdp-price .price-save {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.pdp-price .price-warn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-d);
  font-size: 14px;
  font-weight: 600;
}
.pdp-price .price-pix {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #E8F9F1 0%, #D4F3E4 100%);
  border: 1px solid #22C55E;
  border-radius: 100px;
  font-size: 14px;
  color: #0F5C33;
  font-weight: 600;
}
.pdp-price .price-pix strong { color: var(--green-d); font-weight: 800; }
.pix-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.pdp-qty-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin: 28px 0 18px;
}

/* Botao gigante estilo PDP */
.btn-buy-pdp {
  width: 100%;
  margin-top: 28px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--pink) 0%, #FF6B95 100%);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 12px 28px rgba(230, 58, 107, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-buy-pdp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(230, 58, 107, 0.5);
}
.btn-buy-pdp::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  animation: btnShim 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShim {
  0%, 60% { left: -100%; }
  100% { left: 200%; }
}
.btn-buy-pdp .heart { font-size: 22px; line-height: 1; }

/* ── CTA da barra fixa: mesmo tratamento do botao de compra ── */
#stickyBtn {
  background: linear-gradient(135deg, var(--pink) 0%, #FF6B95 100%);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  animation: stickyGlow 2.2s ease-in-out infinite;
}
#stickyBtn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  animation: btnShim 3s ease-in-out infinite;
  pointer-events: none;
}
#stickyBtn .heart {
  font-size: 17px;
  line-height: 1;
  animation: heartBeat 1.4s ease-in-out infinite;
}
#stickyBtn .btn-text { position: relative; z-index: 1; }

@keyframes stickyGlow {
  0%, 100% { box-shadow: 0 6px 18px rgba(230, 58, 107, 0.40); transform: scale(1); }
  50%      { box-shadow: 0 8px 30px rgba(230, 58, 107, 0.75); transform: scale(1.03); }
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25%      { transform: scale(1.3); }
  45%      { transform: scale(1); }
}

/* Respeita quem pediu menos animacao no sistema */
@media (prefers-reduced-motion: reduce) {
  #stickyBtn, #stickyBtn::after, #stickyBtn .heart { animation: none; }
}
.btn-buy-pdp .btn-text { letter-spacing: 0.03em; }

.pdp-trust {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--gray);
}

/* ── ML Trust widget (reputacao MercadoLider) ── */
.ml-trust {
  margin-top: 24px;
  padding: 20px 22px 18px;
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ml-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-lighter);
}
.ml-logo {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  padding: 8px 4px;
}
.ml-logo img { width: 100%; height: 100%; object-fit: contain; }
.ml-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00A8E1;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.ml-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9px;
  color: #00A8E1;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.ml-title-block { flex: 1; min-width: 0; }
.ml-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  color: #00A65A;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.ml-subtitle {
  font-size: 12.5px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.ml-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 16px 0;
}
.ml-bar {
  height: 6px;
  border-radius: 100px;
}
.ml-bar.b1 { background: #FFC5C5; }
.ml-bar.b2 { background: #FFE58C; }
.ml-bar.b3 { background: #FFE58C; }
.ml-bar.b4 { background: #B7E5B7; }
.ml-bar.b5 { background: #22C55E; }

.ml-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 10px;
}
.ml-stat {
  text-align: center;
  padding: 4px 8px;
  position: relative;
}
.ml-stat + .ml-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 12px;
  width: 1px;
  background: var(--gray-lighter);
}
.ml-stat-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.ml-stat-icon {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1;
}
.ml-stat-lbl {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.06em;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .ml-header { gap: 12px; }
  .ml-logo { width: 64px; height: 64px; }
  .ml-title { font-size: 15px; }
  .ml-subtitle { font-size: 11px; }
  .ml-stats { gap: 4px; }
  .ml-stat-num { font-size: 16px; }
  .ml-stat-lbl { font-size: 9px; }
}

/* ════════════════════════════════════════════════════════════════
   DESCRICAO DO PRODUTO (substitui a secao de ingredientes)
   ════════════════════════════════════════════════════════════════ */
#description {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--pink-bg) 0%, var(--white) 100%);
}
.desc-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px clamp(28px, 4vw, 56px);
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-lighter);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.desc-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.desc-body {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 1000px;
}
.desc-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--pink-bg);
  border-radius: 16px;
  padding: 28px 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(230, 58, 107, 0.12);
}
.feat-icon {
  width: 40px;
  height: 40px;
  color: var(--pink);
  margin-bottom: 20px;
}
.feat-icon svg { width: 100%; height: 100%; }
.feat-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.feat-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .desc-features { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .desc-card { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .desc-features { grid-template-columns: 1fr; }
  #description { padding: 48px 16px; }
}

/* ── Payment info ── */
#payment-info {
  padding: 48px 24px 60px;
  background: var(--white);
  border-top: 1px solid var(--gray-lighter);
}

/* ════════════════════════════════════════════════════════════════
   FAB — Botao Flutuante (sempre visivel)
   ════════════════════════════════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, var(--pink) 0%, #FF6B95 100%);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(230, 58, 107, 0.55), 0 0 0 1px rgba(255,255,255,0.12) inset;
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}
.fab.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(230, 58, 107, 0.7);
}
.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--pink);
  animation: fabPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}
.fab-heart {
  font-size: 22px;
  animation: heartBeat 1.6s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15%, 45% { transform: scale(1.2); }
  30%, 60% { transform: scale(1); }
}
.fab-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.fab-text strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.fab-text small {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.95;
}

/* ── RESPONSIVE PDP ── */
@media (max-width: 900px) {
  #hero.pdp { padding: 20px 16px 40px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: relative; top: 0; }
  .gallery-main { aspect-ratio: 1 / 1; max-width: 500px; margin: 0 auto; }
  .gallery-thumbs { max-width: 500px; margin-left: auto; margin-right: auto; }

  .pdp-title { font-size: 24px; }
  .pdp-price .price-big { font-size: 44px; }

  /* No mobile o CTA e a barra fixa, sempre visivel desde o topo.
     O FAB sai de cena pra nao competir com ela. */
  .fab { display: none !important; }

  .sticky-buy {
    display: flex !important;
    transform: translateY(0) !important;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 12px;
  }
  .sticky-buy .btn {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    padding: 14px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  .sticky-info { flex: 0 0 auto; }
  .sticky-title { font-size: 10px; }
  .sticky-price { font-size: 19px; }

  /* Espaco pro conteudo nao ficar embaixo da barra */
  body { padding-bottom: 78px; }
}

@media (max-width: 480px) {
}
