/* PALETA CLARA MINIMALISTA */
:root {
  --bg-page: #f5f5f7;
  --bg-header: #ffffff;
  --bg-hero: #ffffff;
  --bg-badge: #e4e5ea;
  --bg-pill: #111111;

  --text-main: #111111;
  --text-soft: #5f6470;
  --text-muted: #8c919c;

  --border-soft: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.12);

  --radius-pill: 999px;
  --radius-md: 16px;

  --transition-fast: 0.16s ease-out;
  --transition-med: 0.24s ease-out;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-engrave: "Great Vibes", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #111111; /* fundo-base escuro: overscroll/sobras ficam pretas */
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* HEADER */

.lp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 60px;
  background: #111111;
  border-bottom: none; /* header e hero são uma peça contínua */
  transition: transform 0.3s ease;
}

.lp-header.is-hidden {
  transform: translateY(-100%);
}

.lp-header-inner {
  position: relative;
  max-width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* menu hamburguer */

.lp-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.lp-menu-line {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  margin: 0 auto;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ícone animado quando menu abre (vira X) */
.lp-nav-open .lp-menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-nav-open .lp-menu-line:nth-child(2) {
  opacity: 0;
}
.lp-nav-open .lp-menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* logo */

.lp-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: inherit;
  display: block;
  line-height: 0;
  opacity: 1;
}

.lp-logo-img {
  width: min(220px, 58vw); /* wordmark largo: dimensiona pela largura */
  height: auto;            /* altura automática mantém a proporção */
  display: block;
  filter: brightness(0) invert(1); /* logo branca sobre header preto */
  image-rendering: -webkit-optimize-contrast;
}

/* ícone de cadeado (usado no rodapé do menu) */

.lp-secure-icon {
  width: 15px;
  height: 15px;
  stroke: #333;
  fill: transparent;
  stroke-width: 1.2;
}

/* NAV LATERAL */

.lp-nav {
  position: fixed;
  inset: 0;
  z-index: 100; /* acima do header (z-index 50) */
  pointer-events: none;
  visibility: hidden; /* nada do painel visível/clicável enquanto fechado */
  transition: visibility 0s 0.26s; /* segura o hide até a animação de saída terminar */
}

body.lp-nav-open .lp-nav {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s 0s; /* aparece imediatamente ao abrir */
}

/* trava o scroll da página com o menu aberto */
body.lp-nav-open {
  overflow: hidden;
}

.lp-nav-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: 78vw;
  max-width: 300px;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.26s ease-out;
  z-index: 2;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 18px; /* mantém o respiro interno do menu */
}

body.lp-nav-open .lp-nav-panel {
  transform: translateX(0);
}

.lp-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.26s ease-out;
  z-index: 1;
}

body.lp-nav-open .lp-nav-backdrop {
  opacity: 1;
}

/* conteúdo nav */

.lp-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.lp-nav-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.lp-nav-close {
  border: none;
  background: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.lp-nav-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-nav-link {
  display: block;
  padding: 7px 8px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.lp-nav-link:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border-soft);
  transform: translateX(2px);
}

.lp-nav-link--highlight {
  color: #111111;
  font-weight: 700;
}

/* divisor + links de políticas (menores) no fim do menu */
.lp-nav-divider {
  height: 1px;
  margin: 8px 8px;
  background: var(--border-soft);
  list-style: none;
}

.lp-nav-link--small {
  font-size: 0.76rem;
  color: var(--text-muted);
  padding-top: 5px;
  padding-bottom: 5px;
}

/* logo no topo do painel */
.lp-nav-logo {
  height: 20px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: brightness(0); /* painel branco -> logo preta (sem invert) */
}

/* selo compra segura no rodapé do painel */
.lp-nav-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.lp-nav-footer .lp-secure-icon {
  width: 14px;
  height: 14px;
}

/* ===== HERO DIA DOS PAIS – MOBILE FIRST ===== */

.hero.hero--minimal {
  background: #111111; /* mesmo tom do header, peça única */
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 84px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* EYEBROW */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HEADLINE */

.hero-title {
  margin: -8px auto 0; /* gap 20px do flex - 8px = 12px entre eyebrow e h1 */
  max-width: 340px; /* mantém o uppercase travado em 2 linhas no mobile */
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5.8vw, 1.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-title span {
  color: rgba(255, 255, 255, 0.55);
}

/* SUBHEADLINE */

.hero-sub {
  margin: 0;
  max-width: 340px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

/* IMAGEM */

.hero-image-only {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-image-main {
  width: 100%;
  max-width: 430px;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* BOTÕES */

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}

.btn-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.12);
  transition: opacity 0.16s ease-out, transform 0.16s ease-out,
    box-shadow 0.16s ease-out;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

/* brilho passando na hover */
.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(0, 0, 0, 0.06) 45%,
    transparent 80%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.btn-main:hover {
  opacity: 0.92;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.18);
}

.btn-main:active {
  opacity: 0.92;
  transform: translateY(1px);
}

.btn-main:hover::before {
  animation: ctaShine 0.6s ease-out forwards;
}

.btn-main-icon {
  font-size: 1.1rem;
  transform: translateY(1px);
}

/* pulso sutil na sombra a cada 2.5s (halo branco no fundo escuro) */
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.10);
  }
  50% {
    box-shadow: 0 12px 34px rgba(255, 255, 255, 0.22);
  }
}

/* brilho andando na hover */
@keyframes ctaShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s ease-out, border-color 0.16s ease-out,
    color 0.16s ease-out;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* TRUST ROW */

.hero-trust {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-trust-star {
  color: #ffffff;
}

/* respeitar quem desativa animações no SO */
@media (prefers-reduced-motion: reduce) {
  .btn-main {
    animation: none;
  }
  .btn-main:hover {
    transform: none;
    box-shadow: none;
  }
  .btn-main::before {
    display: none;
  }
}

/* RESPONSIVO */

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
    max-width: 520px;
  }

  .hero-image-main {
    max-width: 480px;
  }
}

/* ===== EYEBROW DE SEÇÃO (reutilizável) ===== */

.section-eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ===== SEÇÃO DE BENEFÍCIOS – LISTA HTML/CSS ===== */

.benefits-section {
  background: var(--bg-page);
  padding: 40px 16px;
  position: relative;
  z-index: 1;
  margin-top: -24px;                    /* sobe sobre o hero escuro */
  border-top-left-radius: 24px;         /* folha clara cobrindo o preto */
  border-top-right-radius: 24px;
}

.benefits-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.benefits-title {
  margin: 6px 0 24px;
  font-size: 1.35rem;
  text-align: center;
}

.benefits-list {
  list-style: none;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 16px;
}

.benefit-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
}

.benefit-name {
  margin: 0 0 2px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.benefit-desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-soft);
}
/* ===== SEÇÃO DE CORES – CARROSSEL MINIMALISTA ===== */

.colors-picker {
  background: #ffffff;
  padding: 36px 16px;
}

.colors-picker-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.colors-picker-title {
  margin: 6px 0 24px;
  font-size: 1.35rem;
}

/* palco da imagem */

.colors-stage {
  max-width: 260px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-page);
  border-radius: 24px;
  padding: 12px;
}

.colors-stage img {
  max-width: 100%;
  display: block;
  transition: opacity 180ms ease;
}

.colors-stage img.is-fading {
  opacity: 0;
}

/* nome da cor atual */

.colors-current {
  margin: 12px 0 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: opacity 180ms ease;
}

.colors-current.is-fading {
  opacity: 0;
}

/* bolinhas de cor */

.colors-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
}

.color-dot-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); /* cores claras não somem */
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-dot-btn.is-active {
  border: 2px solid #111111;
  transform: scale(1.12);
}

/* cor esgotada no seletor: opacidade + risco diagonal (ainda clicável p/ ver) */
.color-dot-btn.is-soldout {
  position: relative;
  opacity: 0.45;
}

.color-dot-btn.is-soldout::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128%;
  height: 2px;
  border-radius: 2px;
  background: #dad4d4;
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
}

.colors-picker-hint {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
/* ===== TECIDO – 100% ALGODÃO (fundo escuro) ===== */

.fabric-section {
  background: #111111;
  padding: 28px 16px 40px;
  color: #ffffff;
}

.fabric-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

/* eyebrow variante escura */
.section-eyebrow--dark {
  color: rgba(255, 255, 255, 0.5);
}

/* título e texto */

.fabric-title {
  margin: 6px 0 24px;
  font-size: 1.35rem;
  color: #ffffff;
}

.fabric-sub {
  margin: 0 auto 28px;
  max-width: 340px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.fabric-sub strong {
  color: #ffffff;
}

/* cards de tecido (3 colunas) */

.fabric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.fabric-card {
  margin: 0;
}

.fabric-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fabric-card figcaption {
  margin-top: 8px;
  font-size: 0.68rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* ===== TABELA DE MEDIDAS ===== */

.size-section {
   background: #f5f5f7;    
  padding: 32px 16px 40px;
}

.size-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

/* título da seção */

.size-title {
  margin: 6px 0 20px;
  font-size: 1.35rem;
  color: #111111;
}

/* card principal */

.size-card {
  max-width: 380px;
  margin: 0 auto 12px;
  padding: 18px 18px 14px;
  border-radius: 26px;
  background: #f3f4f6;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* cabeçalho */

.size-header-row,
.size-row {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1.3fr;
  align-items: center;
}

.size-header-row {
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.size-head {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #6c707a;
}

/* linhas */

.size-row {
  padding: 5px 0;
  font-size: 0.86rem;
  color: #222222;
}

.size-row + .size-row {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.size-col--label {
  font-family: var(--font-display);
  font-weight: 800;
}

/* dica embaixo */

.size-tip {
  margin: 12px auto 0;
  max-width: 340px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* desktop: um pouco mais largo */

@media (min-width: 768px) {
  .size-section {
    padding: 40px 32px 52px;
  }

  .size-card {
    max-width: 420px;
  }
}
/* ===== BLOCO DE OFERTA – COMPRE 3 E GANHE 2 ===== */

.offer-section {
  background: #ffffff;
  padding: 40px 16px;
}

.offer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* oferta ocupa a seção — sem card flutuante */
.offer-card {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

/* tag superior */

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* foto do produto + brinde */

.offer-product {
  position: relative;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto 16px;
  border-radius: 18px;
}

.offer-product-img {
  width: 100%;
  display: block;
}

/* badge de brinde ancorado no canto inferior direito, colado nas bordas */
.offer-photo-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #111;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 14px 0 0 0; /* só o canto superior esquerdo arredondado */
  line-height: 1;
}

/* título e texto */

.offer-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #111111;
  line-height: 1.2;
}

.offer-title span {
  color: var(--text-soft);
}

.offer-sub {
  margin: 8px auto 14px;
  max-width: 380px;
  font-size: 0.9rem;
  color: #6d717c;
}

.offer-sub strong {
  color: #111111;
}

/* preço */

/* ===== PREÇO PREMIUM ===== */

.offer-price {
  margin-bottom: 16px;
  text-align: center; /* ou center se preferir */
}

/* Preço antigo */
.offer-old {
  display: block;
  font-size: 0.9rem;
  color: #8a8f99;
  text-decoration: line-through;
  margin-bottom: 2px;
}

/* linha do preço principal + selo de desconto */
.offer-new-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* Preço atual (DESTACADO – verde conversão) */
.offer-new {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #0a7d43;
  letter-spacing: -0.6px;
  line-height: 1;
  transform-origin: center;
}

/* selo de desconto */
.offer-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  background: #0a7d43;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 1;
  transform-origin: center;
}

/* micro animação ao mudar o preço / selo */
@keyframes priceBump {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.offer-new.price-bump,
.offer-discount-badge.price-bump {
  animation: priceBump 0.22s ease-out;
}

/* Parcelamento */
.offer-split {
  display: block;
  font-size: 1rem;
  color: #4a4e57;
  font-weight: 500;
  margin-top: 2px;
}

/* selo 5% off no Pix — linha discreta */
.pix-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pix-note svg {
  flex-shrink: 0;
}

.pix-note strong {
  color: #1e9e8f;
  font-weight: 600;
}


/* blocos internos (tamanho / cores) */

.offer-block {
  margin-top: 12px;
  text-align: left;
}

.offer-block-label {
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: #111111;
}

.offer-block-label strong {
  font-weight: 600;
}

.offer-colors-count {
  font-size: 0.78rem;
  color: #8b8f99;
  display: inline-block;
}

/* estado "3 cores escolhidas" */
.offer-colors-count.is-complete {
  color: #0a7d43;
  font-weight: 700;
}

@keyframes countPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.offer-colors-count.count-pulse {
  animation: countPulse 0.32s ease-out;
}

/* tamanhos */

.offer-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-pill {
  flex: 0 0 auto;
  min-width: 44px;
  padding: 7px 8px;
  border-radius: 999px;
  border: 1px solid #c0c3cc;
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  transition: background-color 0.16s ease-out, color 0.16s ease-out,
              border-color 0.16s ease-out, transform 0.12s ease-out;
}

.size-pill.is-selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: translateY(-1px);
}

/* cores */

.offer-colors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.color-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  border-radius: 999px;
  border: 1px solid #d0d2da;
  background: #ffffff;
  font-size: 0.8rem;
  color: #111111;
  cursor: pointer;
  transition: background-color 0.16s ease-out, border-color 0.16s ease-out,
              transform 0.12s ease-out;
}

.color-pill.is-selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: translateY(-1px);
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
}

/* define as cores dos pontos */
.color-dot--preto    { background: #111111; }
.color-dot--branco   { background: #f5f5f7; }
.color-dot--verde    { background: #1f3b33; }
.color-dot--bege     { background: #d5c3a3; }
.color-dot--cinza    { background: #8a8f99; }
.color-dot--azul     { background: #1c3f62; }
.color-dot--vermelho { background: #b72c2c; }
.color-dot--amarelo  { background: #f4c84a; }
.color-dot--vinho    { background: #5c1f2b; }

/* cor esgotada na grade da oferta — ocupa a linha inteira */
.color-pill.is-soldout {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 12px; /* espaço para a tag não ser cortada */
  opacity: 0.45;
  cursor: not-allowed;
}

.soldout-tag {
  margin-left: auto;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f0f0f0;
  color: #9a9a9a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
}

/* trava as cores não escolhidas quando já há 3 selecionadas */
.color-pill.is-locked {
  opacity: 0.35;
  pointer-events: none;
}

/* ===== UPSELL DA CAIXA PERSONALIZADA ===== */

.box-upsell {
  margin-top: 16px;
  text-align: left;
}

.box-upsell-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 12px;
  border-radius: 16px;
  border: 1.5px solid var(--border-strong);
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.16s ease-out, background-color 0.16s ease-out;
}

.box-upsell.is-on .box-upsell-toggle {
  border-color: #111111;
  background: #fafafa;
}

.box-upsell-img {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.box-upsell-info {
  flex: 1;
  min-width: 0;
}

.box-upsell-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
}

.box-upsell-desc {
  margin: 2px 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-soft);
}

.box-upsell-price {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #0a7d43;
}

.box-upsell-check {
  flex: 0 0 auto;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  transition: background-color 0.16s ease-out, border-color 0.16s ease-out;
}

.box-upsell.is-on .box-upsell-check {
  background: #111111;
  border-color: #111111;
}

.box-upsell.is-on .box-upsell-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* campo do nome (aparece quando marcado) */
.box-name-area {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.box-name-area.is-open {
  max-height: 520px;
  opacity: 1;
  margin-top: 12px;
}

.box-name-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.box-name-area input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border-strong);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.06em;
  background: #ffffff;
  transition: border-color 0.16s ease-out;
}

.box-name-area input:focus {
  outline: none;
  border-color: #111111;
}

.box-name-area input:disabled {
  opacity: 0.4;
}

/* link "prefiro sem gravação" */
.box-skip-name {
  display: block;
  margin: 10px auto 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}

.box-preview {
  position: relative;
  max-width: 280px;
  margin: 12px auto 0;
}

.box-preview img {
  width: 100%;
  display: block;
}

.box-preview-name {
  position: absolute;
  left: 50%;
  top: 36%; /* logo acima do monograma "V" — ajustar visualmente */
  transform: translateX(-50%);
  max-width: 78%; /* trava de segurança: nunca vaza da caixa */
  overflow: hidden;
  text-align: center;
  font-family: var(--font-engrave);
  font-weight: 400;
  letter-spacing: 0.06em; /* cursiva não usa espaçamento largo */
  color: #DAA555; /* dourado harmonizado com a logo/monograma */
  font-size: 2rem;
  transition: font-size 0.15s ease-out;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); /* leve, efeito gravação foil */
  white-space: nowrap;
}

.box-preview-hint {
  margin: 8px 0 0;
  font-size: 0.72rem;
  text-align: center;
  color: var(--text-muted);
}

/* botão de confirmar */

.offer-confirm-btn {
  width: 100%;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.16s ease-out, transform 0.12s ease-out,
              box-shadow 0.16s ease-out, background-color 0.16s ease-out;
}

.offer-confirm-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.offer-confirm-btn:not(:disabled):active {
  transform: scale(0.97);
}

@media (hover: hover) {
  .offer-confirm-btn:not(:disabled):hover {
    background: #000000;
    box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  }
}

/* texto auxiliar */

.offer-help-text {
  margin: 8px 0 0;
  font-size: 0.76rem;
  color: #8b8f99;
}

/* ========= MODAL ========= */

.offer-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.offer-modal.is-open {
  display: flex;
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.offer-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin: 0 16px;
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  text-align: left;
}

.offer-modal-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
}

.offer-modal-line {
  margin: 4px 0;
  font-size: 0.86rem;
  color: #292d34;
}

.offer-modal-line span {
  color: #707580;
}

.offer-modal-total {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.offer-modal-total strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: #0a7d43;
}

.offer-modal-note {
  margin: 10px 0 14px;
  font-size: 0.8rem;
  color: #707580;
}

.offer-modal-actions{
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding-bottom: 8px; /* <-- RESPIRO */
}


.offer-modal-primary,
.offer-modal-secondary {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  
}

.offer-modal-primary {
  background: #111111;
  color: #ffffff;
  padding-bottom: 8px; /* <-- RESPIRO */

}

.offer-modal-secondary {
  background: #f3f4f6;
  color: #111111;
}

/* desktop */

@media (min-width: 768px) {
  .offer-section {
    padding: 40px 32px 52px;
  }

  .offer-card {
    max-width: 460px;
    padding: 24px 22px 22px;
  }
}
/* ===== DEPOIMENTOS – CARROSSEL ===== */

.reviews-section {
  background: #ffffff;
  padding: 44px 0; /* o track tem o padding lateral próprio */
}

.reviews-head {
  text-align: center;
  padding: 0 16px;
  margin-bottom: 20px;
}

.reviews-title {
  margin: 6px 0 0;
  font-size: 1.35rem;
  color: #111111;
}

.reviews-sub {
  margin: 6px auto 0;
  max-width: 340px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* faixa horizontal */
.reviews-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 16px 20px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.review-card {
  flex: 0 0 78%;
  max-width: 300px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 16px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* avatar de iniciais */
.review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.review-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: #111111;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.review-stars {
  color: #f5a623;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  color: #0a7d43;
}

.review-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.5;
}

.review-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  margin-top: auto;
  display: block;
  background: #f2f2f4; /* fallback enquanto carrega */
}

/* dots indicadores */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease-out;
}

.reviews-dot.is-active {
  background: #111111;
}
.stat-section {
  padding: 44px 16px;
  background: #111111;
  color: #ffffff;
  text-align: center;
}

.stat-grid {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-number {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 6vw, 2rem);
  color: #ffffff;
  line-height: 1;
}

.stat-star {
  font-size: 60%;
  vertical-align: super;
  margin-left: 2px;
}

.stat-label {
  margin: 4px 0 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}
/* ===== BLOCO DE CONFIANÇA / COMPRA SEGURA (DARK) ===== */

.trust-section {
  background: #111111;
  padding: 48px 16px;
}

.trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.trust-title {
  margin: 6px 0 0;
  font-size: 1.35rem;
  color: #ffffff;
}

.trust-sub {
  margin: 6px auto 28px;
  max-width: 340px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* lista de itens */

.trust-list {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
}

/* ícone preto em círculo branco (inverso das seções claras) */

.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* textos */

.trust-content {
  flex: 1;
  min-width: 0;
}

.trust-item-title {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.trust-item-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.trust-item-text strong {
  color: rgba(255, 255, 255, 0.9);
}
/* ===== FAQ – ELEGANTE E MINIMAL ===== */

.faq-section {
  background: var(--bg-page);
  padding: 44px 16px;
}

.faq-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  margin: 6px 0 0;
  font-size: 1.35rem;
  color: #111111;
}

.faq-sub {
  margin: 6px auto 24px;
  max-width: 360px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* lista */

.faq-list {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

/* cada item */

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease-out;
}

.faq-item[open] {
  border-color: rgba(0, 0, 0, 0.18);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111111;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ícone "+" que gira para "×" ao abrir */

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  transition: transform 0.2s ease-out;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #111111;
  border-radius: 999px;
}

.faq-icon::before {
  width: 10px;
  height: 1.4px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.4px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

/* corpo */

.faq-body {
  padding: 0 16px 16px;
}

.faq-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.faq-body p strong {
  color: var(--text-main);
}
/* ===== RODAPÉ (DARK) ===== */

.footer {
  background: #111111;
  padding: 48px 16px 28px;
  margin-top: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  height: 20px;
  width: auto;
  display: block;
  opacity: 0.95;
  filter: brightness(0) invert(1); /* logo branca */
}

.footer-about {
  margin: 0;
  max-width: 340px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease-out, border-color 0.16s ease-out;
}

.footer-links a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.footer-payments-label {
  margin: 0 0 8px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-payments-img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}

.footer-info {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-info p {
  margin: 0;
}

.footer-info a {
  color: inherit;
}

.footer-rights {
  width: 100%;
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}
.entrega-ml {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin-top: 10px;

  font-size: 12px;
  color: #8c8c8c;
}

.entrega-ml img {
  height: 16px;
  width: auto;
  opacity: 0.9;
}


.floating-cta{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: .25s ease;
}

.floating-cta.is-show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta__inner{
  background: #0f0f10;
  color: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

.floating-cta__left{ flex: 1; min-width: 0; }

.floating-cta__price{
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.floating-cta__new{ font-weight: 700; font-size: 16px; }
.floating-cta__split{ font-size: 12px; opacity: .85; }

.floating-cta__status{
  margin-top: 4px;
  font-size: 12px;
  opacity: .9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-cta__btn{
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  background: #ffffff;
  color: #0f0f10;
  cursor: pointer;
  transition: .2s ease;
}

.floating-cta__btn:disabled{
  opacity: .45;
  cursor: not-allowed;
}

/* ===== Toast rápido (aviso) ===== */
.mini-toast{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 18px;
  z-index: 10000;
  background: rgba(15,15,16,.92);
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.2;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .22s ease;
}
.mini-toast.is-show{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Nudge (chacoalhar) do CTA flutuante ===== */
.floating-cta.is-nudge .floating-cta__inner{
  animation: floatingNudge .55s ease;
}
@keyframes floatingNudge{
  0%{ transform: translateX(0); }
  20%{ transform: translateX(-6px); }
  40%{ transform: translateX(6px); }
  60%{ transform: translateX(-4px); }
  80%{ transform: translateX(4px); }
  100%{ transform: translateX(0); }
}
/* ===== CTA FLUTUANTE PREMIUM ===== */
.floating-cta__inner{
  background: rgba(15,15,16,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
}

.floating-cta__thumb{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.floating-cta__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.floating-cta__price{
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.floating-cta__new{
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.2px;
}

.floating-cta__split{
  font-size: 11px;
  opacity: .78;
}

.floating-cta__status{
  margin-top: 2px;
  font-size: 11px;
  opacity: .82;
}

.floating-cta__btn{
  border-radius: 999px;         /* mais premium */
  padding: 11px 14px;
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  color: #0f0f10;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.floating-cta__btn:active{
  transform: translateY(1px);
}
.offer-proof{
  margin: 6px 0 14px;
  font-size: 12px;
  opacity: .85;
}
.entrega-ml{
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 14px;

  font-size: 11.5px;
  opacity: .75;
}

.entrega-ml img{
  height: 14px;
  width: auto;
}
/* Nudge leve para guiar a etapa (mobile) */
.is-nudge{
  animation: nudgePulse .55s ease;
}

@keyframes nudgePulse{
  0%{ transform: scale(1); }
  35%{ transform: scale(1.02); }
  100%{ transform: scale(1); }
}
/* ===== CTA FINAL (destaque premium) ===== */
.cta-final{
  padding: 18px 16px 10px;
  background: #0e0e0e;                 /* separa totalmente do FAQ e do footer */
}

.cta-final-inner{
  max-width: 560px;
  margin: 0 auto;

  border-radius: 18px;
    padding: 16px 14px;

  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);

  text-align: center;
}

.cta-final-eyebrow{
  display: inline-block;
  margin: 0 0 8px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: rgba(255,255,255,.78);
}

.cta-final-title{
  margin: 0 0 8px;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;

  color: #fff;
}

.cta-final-sub{
  margin: 0 0 14px;

  font-size: 13px;
  line-height: 1.35;

  color: rgba(255,255,255,.82);
}

.cta-final-btn{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 14px;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;

  background: #fff;
  color: #111;

  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
}

.cta-final-btn:active{
  transform: scale(0.99);
}

.cta-final-safe{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}
/* ===== MODAL PREMIUM ===== */
.offer-modal-dialog{
  position: relative;
}

.offer-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.offer-modal-title{
  margin: 6px 0 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.offer-modal-sub{
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(17,17,17,.78);
}

.offer-modal-summary{
  border-radius: 16px;
  padding: 12px;
  background: rgba(0,0,0,.035);
  border: 1px solid rgba(0,0,0,.08);
}

.offer-modal-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 6px;
}

.offer-modal-row + .offer-modal-row{
  border-top: 1px solid rgba(0,0,0,.06);
}

.offer-modal-label{
  font-size: 12px;
  font-weight: 700;
  color: rgba(17,17,17,.70);
}

.offer-modal-value{
  font-size: 13px;
  color: #111;
}

.offer-modal-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  color: #111;
}

.offer-modal-row--colors{
  flex-direction: column;
  align-items: flex-start;
}

.offer-modal-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-modal-color-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.offer-modal-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
}

.offer-modal-note{
  margin-top: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.035);
  border: 1px dashed rgba(0,0,0,.14);
  font-size: 12px;
  line-height: 1.35;
  color: rgba(17,17,17,.78);
}

.offer-modal-actions{
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding-bottom: 8px; /* <-- RESPIRO */
}


.offer-modal-primary{
  font-weight: 900;
}

.offer-modal-safe{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(17,17,17,.70);
  text-align: center;
}

/* fallback escondido */
.offer-modal-colors-fallback{
  display: none;
}
/* ===== MODAL: base (fechado) ===== */
.offer-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.offer-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}


/* ===== aberto ===== */
.offer-modal.is-open{
  opacity: 1;
  pointer-events: auto;
}

.offer-modal.is-open .offer-modal-dialog{
  transform: translateY(0);
    padding: 14px 14px 22px; /* ↑ aumenta o bottom */
}

/* ===== conteúdo premium ===== */
.offer-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.offer-modal-title{
  margin: 6px 0 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.offer-modal-sub{
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(17,17,17,.78);
}

.offer-modal-summary{
  border-radius: 16px;
  padding: 12px;
  background: rgba(0,0,0,.035);
  border: 1px solid rgba(0,0,0,.08);
}

.offer-modal-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 6px;
}
.offer-modal-row + .offer-modal-row{
  border-top: 1px solid rgba(0,0,0,.06);
}

.offer-modal-label{
  font-size: 12px;
  font-weight: 700;
  color: rgba(17,17,17,.70);
}

.offer-modal-value{
  font-size: 13px;
  color: #111;
}

.offer-modal-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  color: #111;
}

.offer-modal-row--colors{
  flex-direction: column;
  align-items: flex-start;
}

.offer-modal-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-modal-color-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  color: #111;
}

.offer-modal-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
}

.offer-modal-note{
  margin-top: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.035);
  border: 1px dashed rgba(0,0,0,.14);
  font-size: 12px;
  line-height: 1.35;
  color: rgba(17,17,17,.78);
}

.offer-modal-actions{
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding-bottom: 8px; /* <-- RESPIRO */
}


.offer-modal-secondary,
.offer-modal-primary{
  height: 44px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  
}

.offer-modal-secondary{
  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  color: #111;
}

.offer-modal-primary{
  background: #111;
  border: 1px solid #111;
  color: #fff;
}

.offer-modal-safe{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(17,17,17,.70);
  text-align: center;
}

.offer-modal-colors-fallback{
  display: none;
}
.modal-colors-dots{
  display: flex;
  gap: 10px;
  align-items: center;
}

/* bolinha base */
.color-dot-mini{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}

/* cores */
.color-branco{
  background: #ffffff;
}

.color-preto{
  background: #111111;
}

.color-bege{
  background: #d8c7a1;
}

.color-azul{
  background: #1f3a8a;
}

.color-verde-escuro{
  background: #1f3d2b;
}

.color-cinza{
  background: #9ca3af;
}

.color-vermelho{
  background: #b91c1c;
}

.color-amarelo{
  background: #facc15;
}
.offer-modal-row--inline{
  align-items: center;
}

.modal-colors-dots--right{
  margin-left: auto;
  justify-content: flex-end;
}

/* garante que as bolinhas não quebrem feio */
.modal-colors-dots{
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
}
/* garante que a bolinha não vire “linha” */
.color-dot{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 16px;
}

.offer-kit-title {
  margin: 0 0 6px;              /* aproxima da tag sem grudar */
  text-align: center;

  font-size: 1.05rem;           /* tamanho ideal no mobile */
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;

  color: #111111;
}

.offer-kit-title span {
  font-weight: 500;
  color: #5f6470;               /* cinza premium */
  font-size: 0.9rem;
}
.offer-kit-title {
  margin-bottom: 10px; /* antes estava 6px */
}
.footer-social{
  margin-top: -15px;
  display: flex;
  justify-content: center;
}

.footer-social__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;

  color: #55585f; /* mesma vibe do footer */
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.55);

  transition: .18s ease;
}

.footer-social__link:hover{
  color: #111;
  border-color: rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

.footer-social__icon{
  width: 18px;
  height: 18px;
  fill: currentColor; /* pega a cor do texto */
}

.footer-social__text{
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
/* ===== POPUP ANO NOVO (premium) ===== */
.ny-popup{
  position: fixed;
  inset: 0;
  z-index: 10020;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.ny-popup.is-open{
  opacity: 1;
  pointer-events: auto;
}

.ny-popup__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.ny-popup__dialog{
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 380px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 20px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  border: 1px solid rgba(0,0,0,.08);
}

.ny-popup__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 16px;
}

.ny-popup__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ny-popup__title{
  margin: 10px 0 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.ny-popup__text{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(17,17,17,.78);
}

.ny-popup__actions{
  display: flex;
  gap: 10px;
}

.ny-popup__btn{
  flex: 1;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.12);
}

.ny-popup__btn--primary{
  background: #111;
  border-color: #111;
  color: #fff;
}

.ny-popup__btn--ghost{
  background: #fff;
  color: #111;
}

.ny-popup__fine{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(17,17,17,.65);
  text-align: center;
}

/* ===== TIPOGRAFIA ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* h2 das seções: Archivo 800, uppercase (ao final para vencer as classes) */
.benefits-title,
.colors-picker-title,
.fabric-title,
.size-title,
.offer-title,
.reviews-title,
.trust-title,
.faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ===== POPUP DESCONTO PIX ===== */

.pix-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end; /* mobile: bottom-sheet */
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}

.pix-popup.is-open {
  visibility: visible;
  pointer-events: auto;
}

.pix-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.pix-popup.is-open .pix-popup-backdrop {
  opacity: 1;
}

.pix-popup-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px 24px 0 0;
  padding: 28px 20px 24px;
  text-align: center;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.pix-popup.is-open .pix-popup-dialog {
  transform: translateY(0);
  opacity: 1;
}

.pix-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  cursor: pointer;
}

.pix-popup-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.pix-popup-eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.pix-popup-title {
  margin: 6px 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
}

.pix-popup-text {
  margin: 0 auto;
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.pix-popup-text strong {
  color: #ffffff;
}

.pix-popup-cta {
  width: 100%;
  height: 52px;
  margin-top: 18px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.16s ease-out;
}

.pix-popup-cta:hover {
  opacity: 0.92;
}

.pix-popup-dismiss {
  display: block;
  margin: 10px auto 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  cursor: pointer;
}

/* trava o scroll da página com o popup aberto */
body.pix-popup-open {
  overflow: hidden;
}

@media (min-width: 640px) {
  .pix-popup {
    align-items: center; /* desktop: modal centralizado */
  }
  .pix-popup-dialog {
    border-radius: 24px;
  }
}

/* estado ativo da linha do Pix na oferta (após aceitar o desconto) */
.pix-note.is-active {
  color: #0a7d43;
}

.pix-note.is-active strong {
  color: #0a7d43;
}

@keyframes pixFlash {
  0%   { background: rgba(10, 125, 67, 0); }
  30%  { background: rgba(10, 125, 67, 0.16); }
  100% { background: rgba(10, 125, 67, 0); }
}

.pix-note.pix-flash {
  border-radius: 999px;
  animation: pixFlash 1s ease-out;
}
