/* ========================================================================
   Alívio HidraLiss — Landing (Header + Hero)
   Mobile-first · HTML/CSS/JS puro
   ======================================================================== */

:root {
  --rosa: #E9A8AC;
  --rosa-forte: #D97D82;
  --rosa-claro: #F6DADC;
  --rosa-bg: #FDEEF0;
  --creme: #FFF8F5;
  --texto: #4A3B3D;
  --texto-suave: #8A7679;
  --ouro: #C9A24B;

  --header-h: 64px;
  --max: 480px;

  --radius-sm: 18px;
  --radius-md: 22px;
  --radius-lg: 28px;

  --shadow-soft: 0 10px 30px rgba(217, 125, 130, 0.18);
  --shadow-btn: 0 12px 26px rgba(217, 125, 130, 0.40);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------ Reset ------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--texto);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* Foco visível no teclado */
:focus-visible {
  outline: 3px solid var(--rosa-forte);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ========================================================================
   HEADER
   ======================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header__inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--rosa-forte);
}

/* Logo centralizada */
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.header__logo img {
  height: 34px;
  width: auto;
  /* No topo (sobre o hero rosa) a logo fica BRANCA */
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(74, 59, 61, 0.35));
  transition: filter 0.35s var(--ease);
}

/* Hambúrguer — branco no topo */
.hamburger__lines,
.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: #fff;
  filter: drop-shadow(0 1px 3px rgba(74, 59, 61, 0.35));
  transition: background 0.35s var(--ease), transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.hamburger__lines { position: relative; }
.hamburger__lines::before { position: absolute; top: -7px; left: 0; }
.hamburger__lines::after  { position: absolute; top: 7px;  left: 0; }

/* ----- Estado rolado: fundo branco translúcido, elementos ROSA ----- */
.header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(217, 125, 130, 0.14);
}

.header.scrolled .header__logo img {
  /* Remove o invert → volta a ser rosa */
  filter: drop-shadow(0 2px 5px rgba(217, 125, 130, 0.25));
}

.header.scrolled .hamburger__lines,
.header.scrolled .hamburger__lines::before,
.header.scrolled .hamburger__lines::after {
  background: var(--rosa-forte);
  filter: none;
}

/* ========================================================================
   DRAWER (menu lateral esquerdo)
   ======================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(74, 59, 61, 0.38);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.drawer-overlay.is-open { opacity: 1; }

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: min(80vw, 320px);
  height: 100%;
  padding: 20px 22px 32px;
  background: linear-gradient(160deg, var(--creme) 0%, var(--rosa-bg) 100%);
  box-shadow: 12px 0 40px rgba(217, 125, 130, 0.20);
  transform: translateX(-105%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;        /* botão X no canto superior direito */
}

.drawer__close { color: var(--rosa-forte); }

/* Logo em imagem no topo do drawer — rosa padrão (sem invert) */
.drawer__logo {
  display: block;
  width: 132px;
  height: auto;
  margin: 8px auto 24px;            /* centralizada + espaçamento confortável */
}

.drawer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer__menu a {
  display: block;
  padding: 14px 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--texto);
  border-radius: 14px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.drawer__menu a:hover,
.drawer__menu a:focus-visible {
  background: rgba(217, 125, 130, 0.12);
  color: var(--rosa-forte);
}

.drawer__menu .drawer__cta {
  margin-top: 14px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-forte) 100%);
  box-shadow: var(--shadow-btn);
}
.drawer__menu .drawer__cta:hover,
.drawer__menu .drawer__cta:focus-visible {
  color: #fff;
  filter: brightness(1.03);
}

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  min-height: 96svh;
  /* A foto É o fundo — cover preenche tudo, sem faixas */
  background-image: url("img/hero.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #FCE4E7;         /* fallback enquanto a imagem carrega */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-h) + 14px) 22px 22px;
  text-align: center;
  overflow: hidden;
}
/* empurra o grupo de baixo + seta para a base */
.hero__top { margin-bottom: auto; }

/* Véu escuro no TOPO — suave, só pro título/logo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(60, 30, 35, 0.40) 0%,
    transparent 38%
  );
}

/* Véu escuro na BASE — mais forte, pro subtítulo + selo + botão */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(50, 25, 30, 0.72) 0%,
    rgba(50, 25, 30, 0.45) 22%,
    transparent 48%
  );
}

/* Grupo de cima */
.hero__top {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin-top: 14px;                 /* respiro entre header/logo e o "TECNOLOGIA..." */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;                        /* gap pequeno entre selo e título */
}

/* Grupo de baixo — colado na base pelo space-between */
.hero-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Selo "TECNOLOGIA..." — texto solto, fino e minimalista, uma linha */
.pill {
  display: inline-block;
  font-size: clamp(0.5rem, 2.3vw, 0.78rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  /* compensa o espaçamento à direita (letter-spacing) p/ centralizar bem */
  padding-left: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 1px 4px rgba(40, 20, 25, 0.4);
}

/* Título serifado */
.hero__title {
  margin: 2px 0 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 7.5vw, 2.3rem);
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 1px 6px rgba(40, 20, 25, 0.55);
}
.hero__title em {
  font-style: italic;
  color: #E8677A;                   /* rosé-coral vibrante da marca */
}

.hero__subtitle {
  margin: 0;
  max-width: 330px;
  font-size: clamp(0.9rem, 3.8vw, 1rem);
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(40, 20, 25, 0.55);
}

/* Estrelas */
.hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.stars {
  color: #F0B429;                   /* dourado — contraste sobre rosa claro */
  letter-spacing: 2px;
  font-size: 1.05rem;
}
.hero__rating-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(40, 20, 25, 0.55);
}

/* Botão CTA pill com gradiente rosa */
.btn-cta {
  display: inline-block;
  width: auto;                 /* não vira barra gigante sobre o produto */
  max-width: 320px;
  margin-top: 4px;
  padding: 16px 34px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-forte) 100%);
  border-radius: 999px;
  box-shadow: var(--shadow-btn);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.btn-cta:hover,
.btn-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(217, 125, 130, 0.48);
  filter: brightness(1.04);
}
.btn-cta:active { transform: translateY(0); }

/* indicador de scroll (chevron animado) */
.scroll-cue {
  position: relative;
  z-index: 1;
  margin-top: 14px;                  /* respiro abaixo do botão */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.scroll-cue__label {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  text-shadow: 0 1px 3px rgba(40, 20, 25, 0.5);
}
.scroll-cue svg {
  filter: drop-shadow(0 1px 3px rgba(40, 20, 25, 0.5));
  animation: scrollBob 1.4s ease-in-out infinite;
}
/* some ao rolar a página */
.scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes scrollBob {
  0%, 100% { transform: translateY(-4px); opacity: 0.5; }
  50%      { transform: translateY(6px);  opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue svg { animation: none; }
}

/* ========================================================================
   BENEFÍCIOS
   ======================================================================== */
.benefits {
  background: var(--creme);          /* #FFF8F5 */
}

.benefits__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}

/* Cabeçalho de seção (reutilizável) */
.section-head {
  text-align: center;
  margin-bottom: 22px;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rosa-forte);
}

.section-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 6.5vw, 2rem);
  line-height: 1.15;
  color: var(--texto);
}
.section-title em {
  font-style: italic;
  color: var(--rosa-forte);
}

/* Grid de benefícios — 2 x 2, delicado */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 28px -20px rgba(180, 110, 115, 0.4);
}

/* Ícone leve — só o traço, sem círculo cheio */
.card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  background: rgba(233, 168, 172, 0.12);  /* véu quase imperceptível */
  border-radius: 50%;
}
.card__icon svg {
  width: 30px;
  height: 30px;
}

.card__title {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--texto);
}
.card__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--texto-suave);
}

/* ========================================================================
   O QUE VEM NO KIT
   ======================================================================== */
.kit-section {
  background: var(--creme);           /* #FFF8F5 — quebra o rosa */
}

.kit-section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}

/* linha de apoio do cabeçalho */
.section-lead {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--texto-suave);
}

/* 3 bolinhas lado a lado */
.kit {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.kit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* bolinha com a imagem do produto dentro */
.kit-item__bubble {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  background: #FBE0E3;
  border-radius: 50%;
  box-shadow: 0 10px 24px -18px rgba(180, 110, 115, 0.5);
}
.kit-item__bubble img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
}

.kit-item__title {
  margin: 0 0 4px;
  font-family: "Fraunces", serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto);
}
.kit-item__desc {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--texto-suave);
}

/* ========================================================================
   COMO USAR (passo a passo)
   ======================================================================== */
.steps-section {
  /* rosa da marca, com leve gradiente pra não fundir com o kit acima */
  background: linear-gradient(180deg, #FBE0E3 0%, #FDEEF0 100%);
}

.steps-section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}

/* cores adaptadas ao fundo rosa */
.steps-section .eyebrow { color: #C9575E; }
.steps-section .section-title em { color: #C9575E; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.step + .step { margin-top: 14px; }

/* coluna do marcador (sobre o fundo rosa) */
.step__col {
  position: relative;
  flex: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* trilho vertical conectando os círculos */
.step:not(:last-child) .step__col::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  bottom: -14px;                      /* atravessa o gap até o próximo círculo */
  width: 2px;
  background: var(--rosa);            /* #E9A8AC */
}

/* marcador numerado */
.step__num {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #D97D82, #E9A8AC);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px -8px rgba(217, 125, 130, 0.7);
}

/* card branco com o texto */
.step__card {
  flex: 1 1 auto;
  min-width: 0;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px -18px rgba(180, 110, 115, 0.55);
}
.step__title {
  margin: 0 0 3px;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--texto);
}
.step__desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--texto-suave);
}

/* ========================================================================
   ANTES E DEPOIS (comparador)
   ======================================================================== */
.ba-section {
  background: var(--creme);           /* #FFF8F5 — quebra o rosa */
}

.ba-section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}

.ba {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px -24px rgba(180, 110, 115, 0.7);
  touch-action: none;                 /* evita scroll ao arrastar */
  user-select: none;
  cursor: ew-resize;
}

.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* camada "depois" — revelada à direita da divisória via clip-path */
.ba__after {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* mostra do divisor (50%) até a direita; JS ajusta o valor */
  clip-path: inset(0 0 0 50%);
}

/* selos ANTES / DEPOIS */
.ba__label {
  position: absolute;
  top: 12px;
  z-index: 3;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.ba__label--before { left: 12px; }
.ba__label--after  { right: 12px; }

/* divisória vertical */
.ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* alça circular */
.ba__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(74, 59, 61, 0.35);
  cursor: ew-resize;
  pointer-events: auto;
}
.ba__handle:active { transform: translate(-50%, -50%) scale(0.96); }

/* ========================================================================
   COMPRA (CTA principal) — estrutura de página de produto
   ======================================================================== */
.buy {
  background: #fff;
  padding: 0;
}
.buy__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}

/* ---------- Galeria ---------- */
.gallery { margin-bottom: 22px; }

.gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--rosa-bg);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.gallery__main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.gallery__main.is-swapping { opacity: 0; }

/* setas laterais */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--rosa-forte);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(217, 125, 130, 0.28);
  backdrop-filter: blur(2px);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.gallery__arrow:hover { background: #fff; }
.gallery__arrow:active { transform: translateY(-50%) scale(0.92); }
.gallery__arrow--prev { left: 10px; }
.gallery__arrow--next { right: 10px; }
.gallery__arrow span { margin-top: -3px; }

/* botão de tela cheia */
.gallery__fs {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--rosa-forte);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(217, 125, 130, 0.28);
  transition: background 0.2s var(--ease);
}
.gallery__fs:hover { background: #fff; }

/* thumbnails */
.gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: none;              /* sem barra rosa embaixo das thumbs */
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }

.thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 4px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--rosa-bg);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s var(--ease);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.thumb.is-active { border-color: var(--rosa-forte); }

/* ---------- Info do produto ---------- */
.buy__eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  color: var(--texto-suave);
}
.buy__title {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--texto);
}
.buy__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.buy__stars { color: #f3c621; font-size: 1rem; letter-spacing: 1px; }
.buy__reviews-text { font-size: 0.82rem; color: var(--texto-suave); }

/* ---------- Preço ---------- */
.price { margin-bottom: 24px; }
.price__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.price__old {
  font-size: 0.95rem;
  color: var(--texto-suave);
  text-decoration: line-through;
}
.price__now {
  font-size: 2rem;
  font-weight: 800;
  color: #00aa00;
  line-height: 1;
}
.price__off {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--rosa-forte);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}
.price__installments {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--texto);
}
.price__installments strong { color: #00aa00; font-weight: 700; }
.price__save {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--rosa-claro);
  color: #B3555A;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Card PIX */
.pix-card {
  display: inline-flex;
  align-items: center;
  max-width: max-content;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(217, 125, 130, 0.14);
}
.pix-card__line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pix-card__value { font-size: 1rem; color: var(--texto); }
.pix-card__label { font-size: 0.85rem; color: var(--texto-suave); }
.pix-card__pill {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--rosa-forte);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}
.pix-card__note {
  margin: 4px 0 0;
  font-size: 0.72rem;
  color: var(--texto-suave);
}

/* ---------- Seletor de cores ---------- */
.colors { margin-bottom: 26px; }
.colors__label {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: var(--texto);
  font-size: 0.95rem;
}
.colors__active { font-weight: 500; color: var(--texto-suave); }
.colors__swatches { display: flex; gap: 16px; }
.swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.swatch.is-active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--rosa-forte);
  transform: scale(1.08);
}

/* ---------- Botão comprar ---------- */
.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D97D82, #E9A8AC);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-btn);
  animation: buyPulse 2s ease-in-out infinite;
}
.buy-btn__cart { flex: 0 0 auto; }
@keyframes buyPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 12px 26px rgba(217, 125, 130, 0.40); }
  50% { transform: scale(1.03); box-shadow: 0 16px 32px rgba(217, 125, 130, 0.52); }
}

/* ---------- Pagamentos ---------- */
.pay-title {
  margin: 22px 0 12px;
  text-align: center;
  color: var(--rosa-forte);
  font-size: 0.9rem;
  font-weight: 600;
}
.pay-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pay-row svg {
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* divisória delicada abaixo de "Nós Aceitamos" */
.buy__divider {
  border: none;
  border-top: 1px solid var(--rosa-claro);   /* #F6DADC */
  margin: 28px 0 0;
}

/* ---------- Divisória ornamental entre seções ---------- */
.divisoria {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 260px;
  margin: 0 auto 24px;               /* espaço acima vem do padding da seção */
}
.divisoria .linha {
  flex: 1;
  height: 1px;
  background: var(--rosa-claro);              /* #F6DADC */
}
.divisoria .ornamento {
  flex: 0 0 auto;
  color: var(--rosa-forte);                   /* #D97D82 */
  font-size: 10px;
  line-height: 1;
}

/* ========================================================================
   DESCRIÇÃO DO PRODUTO (recolhível)
   ======================================================================== */
.desc { background: var(--creme); }           /* #FFF8F5 */
.desc__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}

.desc__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--texto-suave);
  text-align: center;
}

/* área recolhível */
.desc__more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.desc__more-inner { padding-top: 22px; }

.desc__block { margin-bottom: 22px; }
.desc__block:last-child { margin-bottom: 0; }

.desc__subtitle {
  margin: 0 0 6px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--texto);
}
.desc__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--texto-suave);
}

/* ficha técnica: linhas com label à esquerda e valor à direita */
.specs { margin: 0; }
.specs__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rosa-claro);  /* #F6DADC */
}
.specs__row:last-child { border-bottom: none; }
.specs__label {
  flex: 0 0 auto;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--rosa-forte);                    /* #D97D82 */
}
.specs__value {
  margin: 0;
  text-align: right;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--texto-suave);
}

/* botão ver mais / ver menos */
.desc__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 22px auto 0;
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--rosa-claro);         /* #F6DADC */
  border-radius: 999px;
  color: var(--rosa-forte);                    /* #D97D82 */
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.desc__toggle:hover { background: #FDEEF0; }
.desc__toggle-icon { transition: transform 0.3s var(--ease); }
.desc__toggle.is-open .desc__toggle-icon { transform: rotate(180deg); }

/* ========================================================================
   AVALIAÇÕES — estilo app de reviews Shopify (dourado + cinza + branco)
   Paleta NEUTRA de propósito: nada de rosa aqui.
   ======================================================================== */
.reviews {
  background: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  --ouro-rev: #f3c621;
  --cinza-borda: #e1e1e1;
  --escuro: #232323;
  --btn-escuro: #373737;
}
.reviews__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}

.reviews__title {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cinza-borda);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--escuro);
}

/* ---------- Resumo ---------- */
.reviews__summary { margin-bottom: 20px; }
.rsum__avg { text-align: center; margin-bottom: 18px; }
.rsum__score { line-height: 1; }
.rsum__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ouro-rev);
}
.rsum__den {
  font-size: 1.2rem;
  font-weight: 600;
  color: #9a9a9a;
  margin-left: 2px;
}
.rsum__stars {
  color: var(--ouro-rev);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-top: 6px;
}
.rsum__count {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: #6b6b6b;
}

/* barras por estrela */
.rsum__bars { display: flex; flex-direction: column; gap: 7px; }
.rbar { display: flex; align-items: center; gap: 10px; }
.rbar__label {
  flex: 0 0 auto;
  width: 34px;
  font-size: 0.8rem;
  color: #6b6b6b;
  white-space: nowrap;
}
.rbar__label { color: #6b6b6b; }
.rbar__track {
  flex: 1;
  height: 8px;
  background: #ededed;
  border-radius: 20px;
  overflow: hidden;
}
.rbar__fill {
  display: block;
  height: 100%;
  background: var(--ouro-rev);
  border-radius: 20px;
}
.rbar__n {
  flex: 0 0 auto;
  width: 34px;
  text-align: right;
  font-size: 0.8rem;
  color: #6b6b6b;
}

/* ---------- Botões escuros ---------- */
.rev-write-btn,
.rev-btn-dark {
  display: inline-block;
  background: var(--btn-escuro);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.rev-write-btn:hover,
.rev-btn-dark:hover { background: #545454; }

.rev-write-btn {
  display: block;
  margin: 0 auto 22px;
}

/* ---------- Formulário ---------- */
.rev-form {
  border: 1px solid var(--cinza-borda);
  border-radius: 9px;
  padding: 18px 16px;
  margin-bottom: 22px;
  background: #fafafa;
}
.rev-form[hidden] { display: none; }
.rev-field { margin-bottom: 14px; }
.rev-field:last-of-type { margin-bottom: 0; }
.rev-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--escuro);
}
.rev-field input[type="text"],
.rev-field input[type="email"],
.rev-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--cinza-borda);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--escuro);
  background: #fff;
  box-sizing: border-box;
}
.rev-field textarea { resize: vertical; }
.rev-field input:focus,
.rev-field textarea:focus {
  outline: 2px solid var(--ouro-rev);
  outline-offset: 1px;
  border-color: var(--ouro-rev);
}

/* estrelas clicáveis do formulário */
.rev-rate { display: flex; align-items: center; gap: 2px; }
.rev-rate__star {
  background: none;
  border: none;
  padding: 0 2px;
  font-size: 1.6rem;
  line-height: 1;
  color: #d7d7d7;
  cursor: pointer;
  transition: color 0.12s var(--ease);
}
.rev-rate__star.is-on { color: var(--ouro-rev); }
.rev-rate__count {
  margin-left: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b6b6b;
}

.rev-choose__name {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.8rem;
  color: #6b6b6b;
  vertical-align: middle;
}
.rev-submit { margin-top: 4px; }

.rev-error {
  margin: 0 0 12px;
  color: #c0392b;
  font-size: 0.85rem;
}
.rev-error[hidden] { display: none; }

.rev-success {
  background: #eaf7ed;
  border: 1px solid #bfe3c8;
  color: #1e7a3a;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.88rem;
  margin: 0 0 22px;
}
.rev-success[hidden] { display: none; }

/* ---------- Lista de avaliações ---------- */
.rev-list { display: flex; flex-direction: column; gap: 14px; }
.rev-card {
  border: 1px solid var(--cinza-borda);
  border-radius: 9px;
  padding: 16px;
  background: #fff;
}
.rev-card__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.rev-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--escuro);
}
.rev-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #6b6b6b;
}
.rev-card__verified svg { display: block; }
.rev-card__stars {
  color: var(--ouro-rev);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.rev-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--escuro);
}
.rev-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 5px;
  margin-top: 12px;
  background: #f2f2f2;
}

/* ---------- Paginação (quadradinhos estilo Shopify) ---------- */
.rev-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;                 /* uma linha só */
  gap: 6px;
  margin-top: 22px;
  overflow-x: auto;                  /* overflow controlado, sem quebrar linha */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.rev-pager::-webkit-scrollbar { display: none; }
.rev-pager__item {
  flex: 0 0 auto;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 1px solid var(--cinza-borda);
  border-radius: 6px;
  background: #fff;
  color: var(--escuro);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.rev-pager__item:hover:not(:disabled) { background: #f3f3f3; }
.rev-pager__item.is-active {
  background: var(--btn-escuro);
  border-color: var(--btn-escuro);
  color: #fff;
}
.rev-pager__item:disabled { opacity: 0.4; cursor: default; }
.rev-pager__ellipsis {
  flex: 0 0 auto;
  min-width: 18px;
  text-align: center;
  color: #9a9a9a;
  font-size: 0.85rem;
  user-select: none;
}

/* ========================================================================
   FAQ (perguntas frequentes) — fundo rosa
   ======================================================================== */
.faq { background: #FDEEF0; }
.faq__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}
.faq .eyebrow { color: #C9575E; }
.faq .section-title em { color: #C9575E; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
.faq-item {
  background: #fff;
  border: 1px solid #F3DADD;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(217, 125, 130, 0.10);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--texto);                 /* #4A3B3D */
}

/* ícone + que vira - quando aberto */
.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--rosa-forte);        /* #D97D82 */
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }

.faq-item__a {
  padding: 0 18px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--texto-suave);           /* #8A7679 */
}

/* ========================================================================
   GARANTIAS (carrossel automático)
   ======================================================================== */
.guarantees { background: var(--creme); }   /* #FFF8F5 */
.guarantees__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px;
}
.carousel { overflow: hidden; }
.carousel__track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.g-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.g-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #FDEEF0;
}
.g-card__title {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--texto);                 /* #4A3B3D */
}
.g-card__desc {
  margin: 0;
  max-width: 320px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--texto-suave);           /* #8A7679 */
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid var(--rosa-forte);   /* contorno #D97D82 */
  background: transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.carousel__dot.is-active {
  background: var(--rosa-forte);            /* preenchida #D97D82 */
  transform: scale(1.1);
}

/* ========================================================================
   RODAPÉ (estilo Shopify, fundo rosa cheio)
   ======================================================================== */
.site-footer {
  background: #D98F92;
  color: #fff;
  margin-bottom: 68px;               /* respiro para a barra fixa não cobrir o fim */
}
.footer-rainbow {
  height: 4px;
  background: linear-gradient(90deg,
    #f7b7c6 0%, #f9d3a3 20%, #f7f0a0 40%,
    #b8e6b8 60%, #a9d4ef 80%, #cdb6e6 100%);
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px 28px;
}

.footer-acc {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.footer-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-acc summary::-webkit-details-marker { display: none; }
.footer-acc__icon {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}
.footer-acc__icon::before,
.footer-acc__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.footer-acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.footer-acc[open] .footer-acc__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }
.footer-acc__body {
  padding: 0 2px 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.footer-acc__body p { margin: 0 0 12px; }
.footer-acc__body p:last-child { margin-bottom: 0; }
.footer-check {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.footer-check li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
}
.footer-check li::before {
  content: "\2713";                  /* ✓ */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.footer-legal {
  margin: 20px 0 24px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.footer-legal strong { font-weight: 700; color: #fff; }

.footer-block { text-align: center; margin-bottom: 22px; }
.footer-block__title {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
/* grupos de logos: sempre uma linha só, centralizados */
.footer-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
/* altura fixa + width automática pros SVGs não estourarem */
.footer-logos svg {
  width: auto;
  max-width: 100%;
  min-width: 0;
  flex: 0 1 auto;
}

/* Formas de Envio: caixa branca (logos coloridos) */
.footer-logos--ship {
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.footer-logos--ship svg { height: 26px; }

/* Segurança e Qualidade: SEM caixa (logos brancos direto no rosa) */
.footer-logos--sec {
  gap: 18px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.footer-logos--sec svg { height: 30px; }

/* Nós Aceitamos: SVGs soltos, sem caixinha em volta */
.footer-pay {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer-pay .pay-chip {
  display: inline-flex;
  align-items: center;
  background: none;
  padding: 0;
  border-radius: 0;
}
.footer-pay svg {
  display: block;
  height: 32px;
  width: auto;
}

.footer-copy {
  margin: 8px 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================================================
   BARRA FIXA DE COMPRA + MINI-MODAL (bottom sheet)
   ======================================================================== */
.buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.buy-bar.is-visible { transform: translateY(0); }
.buy-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
}
.buy-bar__price { display: flex; flex-direction: column; line-height: 1.2; }
.buy-bar__now { font-size: 1.15rem; font-weight: 800; color: var(--texto); }
.buy-bar__inst { font-size: 0.72rem; color: var(--texto-suave); }
.buy-bar__inst strong { color: #00aa00; font-weight: 700; }
.buy-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #D97D82, #E9A8AC);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(217, 125, 130, 0.4);
  animation: buyPulse 2s ease-in-out infinite;
  white-space: nowrap;
}
/* desktop: barra fixa é conceito mobile */
@media (min-width: 900px) {
  .buy-bar { display: none; }
}

/* mini-modal */
.buy-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.buy-modal[hidden] { display: none; }
.buy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 14, 0.55);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.buy-modal.is-open .buy-modal__backdrop { opacity: 1; }
.buy-modal__sheet {
  position: relative;
  width: 100%;
  max-width: var(--max);
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 22px 20px calc(22px + env(safe-area-inset-bottom, 0));
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.buy-modal.is-open .buy-modal__sheet { transform: translateY(0); }
.buy-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  color: var(--texto);
  cursor: pointer;
}
.buy-modal__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 18px;
}
.buy-modal__img {
  flex: 0 0 auto;
  width: 66px;
  height: 88px;                       /* 3:4 */
  object-fit: contain;
  border-radius: 10px;
  background: var(--rosa-bg);
  padding: 4px;
}
.buy-modal__name {
  margin: 0 0 4px;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--texto);
}
.buy-modal__now { font-size: 1.25rem; font-weight: 800; color: #00aa00; margin-right: 8px; }
.buy-modal__inst { font-size: 0.8rem; color: var(--texto-suave); }
.buy-modal__clabel {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--texto);
}
.buy-modal__clabel span { font-weight: 500; color: var(--texto-suave); }
.buy-modal__swatches { display: flex; gap: 16px; margin-bottom: 20px; }
.buy-modal__cta {
  display: block;
  text-align: center;
  border-radius: 999px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #D97D82, #E9A8AC);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 12, 14, 0.92);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  pointer-events: none;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__arrow span { margin-top: -4px; }
.lightbox__arrow--prev { left: 12px; }
.lightbox__arrow--next { right: 12px; }

/* ========================================================================
   Utilidades / acessibilidade
   ======================================================================== */
body.no-scroll { overflow: hidden; }

/* Espaçamento vertical um pouco maior no desktop */
@media (min-width: 640px) {
  .benefits__inner,
  .kit-section__inner,
  .steps-section__inner,
  .ba-section__inner,
  .buy__inner {
    padding: 40px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
