/* ============================================================
   MALTA · QUADROS — Dark Mono Edition
   Preto profundo + off-white + cinza. Retratos coloridos brilham.
   ============================================================ */

:root {
  /* — Paleta DARK MONO — */
  --bg: #0a0a0a;                    /* preto quase puro */
  --bg-2: #121211;                  /* card / nível 1 */
  --bg-3: #1a1916;                  /* nível 2 */
  --bg-4: #242220;                  /* hover / accent bg */

  --off-white: #f5f1ea;             /* texto principal — warm off-white */
  --off-white-2: #e8e3d8;
  --cream: #d6cebd;                 /* accent quente (papel antigo) */

  --gray-1: rgba(245, 241, 234, 0.78);  /* texto soft */
  --gray-2: rgba(245, 241, 234, 0.55);  /* texto muted */
  --gray-3: rgba(245, 241, 234, 0.32);  /* texto dim */
  --gray-4: rgba(245, 241, 234, 0.14);  /* borders */
  --gray-5: rgba(245, 241, 234, 0.06);  /* surfaces subtle */

  /* — Accent Malta (uso minimo, pra CTA crítico) — */
  --teal: #2DAB89;
  --teal-soft: rgba(45, 171, 137, 0.18);

  /* — Aliases compatibilidade — */
  --azul-malta: var(--bg-3);
  --azul-malta-2: var(--bg-2);
  --azul-malta-3: var(--bg);
  --azul-mar: var(--cream);
  --azul-mar-2: var(--off-white-2);
  --bege-areia: var(--off-white);
  --bege-areia-2: var(--off-white-2);
  --bege: var(--cream);
  --white: var(--off-white);
  --off-white: #f5f1ea;
  --marrom-escuro: var(--bg);
  --marrom-claro: var(--cream);
  --terracota-2: var(--off-white-2);
  --text: var(--off-white);
  --text-soft: var(--gray-1);
  --text-muted: var(--gray-2);
  --light: var(--off-white);
  --light-muted: var(--gray-2);

  /* — Tipografia — */
  --font-sans: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Fraunces', 'Cardo', 'Georgia', serif;
  --font-display: 'Fraunces', 'Cardo', 'Cormorant Garamond', serif;

  /* — Sistema — */
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* — Reset — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--off-white);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 48px);
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: var(--off-white);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.08);
  min-height: 42px;
}
.top-bar strong { color: var(--off-white); font-weight: 700; }
.top-bar__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.top-bar__divider {
  width: 1px;
  height: 16px;
  background: rgba(243, 170, 160, 0.32);
  flex-shrink: 0;
}
.top-bar__countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.top-bar__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e88073;
  box-shadow: 0 0 0 0 rgba(232, 128, 115, 0.6);
  animation: pulseGlow 1.6s ease-out infinite;
  flex-shrink: 0;
}
.top-bar__time {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: #f3aaa0;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* Variant Dia dos Namorados — tom coral sutil */
.top-bar--vday {
  background: linear-gradient(180deg, rgba(232, 128, 115, 0.32), rgba(0, 0, 0, 0.68));
  border-bottom-color: rgba(232, 128, 115, 0.32);
}
.top-bar--vday strong { color: #f3aaa0; }

@media (max-width: 880px) {
  .top-bar__more { display: none; }
  .top-bar__text { letter-spacing: 0.12em; }
}
@media (max-width: 640px) {
  .top-bar { gap: 10px; padding: 8px 12px; min-height: 38px; font-size: 10px; }
  .top-bar__text { letter-spacing: 0.1em; }
  .top-bar__time { font-size: 13px; }
  .top-bar__pulse { width: 6px; height: 6px; }
  .top-bar__divider { height: 12px; }
  .site-header { top: 46px; }
}
@media (max-width: 380px) {
  .top-bar { padding: 7px 10px; }
  .top-bar__text { font-size: 9px; }
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: absolute;
  top: 58px;  /* abaixo da top-bar */
  left: 0; right: 0;
  z-index: 6;
  padding-inline: clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
}
.brand__logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand__sub {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 500;
}
.brand__symbol {
  width: 26px; height: 26px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><clipPath id='c'><circle cx='50' cy='50' r='48'/></clipPath></defs><g clip-path='url(%23c)'><circle cx='50' cy='50' r='48' fill='%23f5f1ea'/><path d='M-5 25 Q15 15 35 25 Q55 35 75 25 Q95 15 110 25 L110 32 Q90 22 70 32 Q50 42 30 32 Q10 22 -5 32 Z' fill='%230a0a0a'/><path d='M-5 45 Q15 35 35 45 Q55 55 75 45 Q95 35 110 45 L110 52 Q90 42 70 52 Q50 62 30 52 Q10 42 -5 52 Z' fill='%230a0a0a'/><path d='M-5 65 Q15 55 35 65 Q55 75 75 65 Q95 55 110 65 L110 72 Q90 62 70 72 Q50 82 30 72 Q10 62 -5 72 Z' fill='%230a0a0a'/><path d='M-5 85 Q15 75 35 85 Q55 95 75 85 Q95 75 110 85 L110 92 Q90 82 70 92 Q50 102 30 92 Q10 82 -5 92 Z' fill='%230a0a0a'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.menu-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gray-5);
  border: 1px solid var(--gray-4);
  color: var(--off-white);
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  transition: background 0.2s, transform 0.2s;
}
.menu-btn:hover { background: var(--gray-4); transform: scale(1.05); }

/* ============================================================
   HERO — Fable-style: imagem esquerda + content direita
   Halftone cobre tudo uniformemente (efeito impressão vintage)
============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  background: var(--bg);
  overflow: hidden;
  color: var(--off-white);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  isolation: isolate;
}

/* Cell esquerda: imagem */
.hero__bg {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-2);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}

/* Halftone — pontinhos escuros cobrindo TUDO (imagem + área direita) */
.hero__halftone {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(10, 10, 10, 0.32) 0.7px, transparent 1.2px);
  background-size: 5px 5px;
  background-position: 0 0;
  mix-blend-mode: multiply;
}

/* Top-fade — gradient sutil no topo do hero pra header ler bem */
.hero__top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.10) 55%,
    transparent 100%
  );
}

/* Cell direita: conteúdo sobre fundo preto */
.hero__content {
  position: relative;
  z-index: 4;
  padding: clamp(130px, 13vw, 190px) clamp(28px, 4.5vw, 68px) clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: min(92vh, 880px);
}

.hero__crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray-2);
  font-weight: 500;
}
.hero__crumb strong { color: var(--off-white); font-weight: 600; }
.hero__crumb .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--cream);
}

/* Tag "Made in Brasil" no hero (substituiu o crumb) */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 5px 12px 5px 8px;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  font-weight: 600;
}
.hero__tag-flag {
  flex-shrink: 0;
  display: block;
}
@media (max-width: 560px) {
  .hero__tag { font-size: 9px; padding: 4px 10px 4px 6px; letter-spacing: 0.2em; }
  .hero__tag-flag { width: 12px; height: 12px; }
}

.hero__heading {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--off-white);
}
.hero__heading em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.hero__sub {
  font-size: 15px;
  color: var(--gray-1);
  font-weight: 400;
}
.hero__sub strong { color: var(--off-white); font-weight: 600; }

/* — CTA HERO MAGNÉTICO (Batch 2 — Agente UX P0) — */
.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  background: linear-gradient(135deg, var(--off-white) 0%, #fff 50%, var(--off-white) 100%);
  color: var(--bg);
  border-radius: 999px;
  padding: 14px 22px 14px 14px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
  box-shadow:
    0 10px 28px rgba(245, 241, 234, 0.18),
    0 2px 0 rgba(0, 0, 0, 0.18) inset,
    0 -2px 0 rgba(255, 255, 255, 0.45) inset;
  will-change: transform;
}
.hero-cta:hover {
  box-shadow:
    0 16px 40px rgba(245, 241, 234, 0.32),
    0 2px 0 rgba(0, 0, 0, 0.18) inset,
    0 -2px 0 rgba(255, 255, 255, 0.5) inset;
}
.hero-cta:active { transform: scale(0.985); }
.hero-cta__main {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-cta__icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-cta__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  flex: 1;
  min-width: 0;
}
.hero-cta__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.hero-cta__sub {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.6);
  letter-spacing: 0.005em;
  line-height: 1.2;
}
.hero-cta__arrow {
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.hero-cta:hover .hero-cta__arrow { transform: translateX(4px); }
.hero-cta__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 1;
}
.hero-cta:hover .hero-cta__shine {
  animation: shineHero 1s ease;
}
@keyframes shineHero {
  to { transform: translateX(120%); }
}

/* Trust row inline abaixo do CTA */
.hero__trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero__trust-row li {
  position: relative;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--gray-2);
  font-weight: 500;
  padding-left: 16px;
}
.hero__trust-row li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--cream);
  font-weight: 700;
  font-size: 12px;
}

@media (max-width: 560px) {
  .hero-cta { padding: 12px 18px 12px 12px; }
  .hero-cta__title { font-size: 15.5px; }
  .hero-cta__sub { font-size: 11px; }
  .hero-cta__icon { width: 38px; height: 38px; flex-basis: 38px; }
  .hero__trust-row { gap: 10px; }
  .hero__trust-row li { font-size: 10.5px; padding-left: 14px; }
}

/* — Card de upload (legacy fallback, mantido caso precise) — */
.upload-card {
  position: relative;
  background: var(--gray-5);
  border: 1.5px dashed var(--gray-4);
  border-radius: 22px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
.upload-card:hover {
  background: rgba(245, 241, 234, 0.10);
  border-color: var(--off-white);
  transform: translateY(-2px);
}
.upload-card__icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--off-white);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.upload-card__icon::after {
  content: "+";
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--off-white);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-4);
}
.upload-card__text { flex: 1; min-width: 0; }
.upload-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 4px;
}
.upload-card__hint {
  font-size: 12.5px;
  color: var(--gray-2);
  line-height: 1.4;
}
.upload-card input[type="file"] { display: none; }

/* — Trust — */
.trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--gray-5);
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  font-size: 12px;
  color: var(--off-white);
  font-weight: 600;
}
.trust__stars { color: var(--off-white); letter-spacing: 2px; }
.trust__count {
  font-size: 12px;
  color: var(--gray-2);
}
.trust__count strong { color: var(--off-white); font-weight: 700; }

/* — Pebbles decorativas removidas (mono dark) — */
.organic, .pebble { display: none; }

/* ============================================================
   SECTIONS
============================================================ */
section { padding-block: clamp(48px, 6.5vw, 88px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow--areia,
.eyebrow--terra,
.eyebrow--malta {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gray-4);
}
.eyebrow--vday {
  background: transparent;
  color: #f3aaa0;
  border: 1px solid rgba(232, 128, 115, 0.42);
  padding: 6px 16px;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 12px;
}
.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.section-lead {
  font-size: 15.5px;
  color: var(--gray-2);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.6;
}
[style*="text-align:center"] .section-lead { margin-inline: auto; }

/* ============================================================
   PROCESSO
============================================================ */
.process { background: var(--bg); position: relative; overflow: hidden; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  text-align: center;
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--gray-3);
  background: var(--bg-3);
}
.step__title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  margin-top: 6px;
  color: var(--off-white);
}
.step__text {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.55;
}

/* ============================================================
   GALERIA — onde os retratos coloridos brilham contra o preto
============================================================ */
.gallery { background: var(--bg); position: relative; overflow: hidden; }
.gallery .section-title { color: var(--off-white); }
.gallery .section-title em { color: var(--cream); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 5 / 7;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-3);
  border: 1px solid var(--gray-4);
}
.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--gray-3);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.88) 0%, transparent 50%);
  opacity: 0.85;
  pointer-events: none;
}
.gallery__caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gallery__artist {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.005em;
  color: var(--off-white);
  line-height: 1.1;
}
.gallery__work {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.78;
  line-height: 1.3;
  transform: translateY(4px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), opacity 0.4s ease;
}
.gallery__item:hover .gallery__work,
.gallery__item:focus-within .gallery__work {
  opacity: 0.78;
  transform: translateY(0);
}

/* ============================================================
   TIERS
============================================================ */
.tiers { background: var(--bg); position: relative; overflow: hidden; }

/* Header da seção compacto + centralizado */
.tiers__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.tiers__header .shell { margin-bottom: 4px; }
.tiers__header .eyebrow { margin-bottom: 8px; }
.tiers__header .section-title { margin-bottom: 4px; }
.tiers__header .section-lead {
  margin: 0 auto 18px;
  font-size: 15px;
  max-width: 480px;
}
.tiers__header .countdown { margin: 0; }

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.tiers__grid--2col {
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  margin: 0 auto;
  gap: 18px;
}

/* ============================================================
   TIER CARD — estrutura simétrica entre Digital e Moldurado
============================================================ */
.tier__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.tier__head .tier__name { margin: 0; }
.tier__head .tier__title { margin: 0; }
.tier__head .tier__sub { margin: 4px 0 0; }

.tier__price-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  min-height: 100px; /* reserva espaço pra simetria (Digital sem size-picker) */
  justify-content: flex-end;
}
.tier__price-block .size-picker {
  margin: 0 0 14px;
}
.tier__price-block .tier__price {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(245, 241, 234, 0.14);
}
.tier--featured .tier__price-block .tier__price {
  border-bottom-color: rgba(10, 10, 10, 0.14);
}

/* ============================================================
   SIZE PICKER — seletor de tamanho dentro do tier
============================================================ */
.size-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: rgba(10, 10, 10, 0.22);
  border: 1px solid rgba(245, 241, 234, 0.08);
  border-radius: 999px;
  margin: 22px 0 14px;
}

/* Tag flutuante "Mais escolhido" acima de uma opção específica */
.size-picker__opt[data-tag] {
  position: relative;
}
.size-picker__opt[data-tag]::before {
  content: attr(data-tag);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: #b8893d;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.9;
  text-transform: none;
}
.tier--featured .size-picker__opt[data-tag]::before {
  color: #8a5e1a;
}
.size-picker__opt[data-tag]::after {
  content: "";
  position: absolute;
  bottom: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-right: 1.4px solid #b8893d;
  border-bottom: 1.4px solid #b8893d;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.7;
}
.tier--featured .size-picker__opt[data-tag]::after {
  border-color: #8a5e1a;
}
/* No modal compact, esconde a tag (espaço pequeno) */
.size-picker--compact .size-picker__opt[data-tag]::before,
.size-picker--compact .size-picker__opt[data-tag]::after {
  display: none;
}
/* Dentro do tier featured (fundo off-white) — texto escuro pra contraste */
.tier--featured .size-picker {
  background: rgba(10, 10, 10, 0.08);
  border-color: rgba(10, 10, 10, 0.12);
}
.size-picker__opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 9px 4px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: rgba(245, 241, 234, 0.6);
  background: transparent;
  transition: all 0.22s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  line-height: 1;
}
/* No tier featured (off-white), texto escuro pra ler bem */
.tier--featured .size-picker__opt {
  color: rgba(10, 10, 10, 0.5);
}
.size-picker__opt:hover:not(.is-active) {
  color: var(--off-white);
}
.tier--featured .size-picker__opt:hover:not(.is-active) {
  color: rgba(10, 10, 10, 0.9);
}
.size-picker__opt.is-active {
  background: var(--off-white);
  color: var(--bg);
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.tier--featured .size-picker__opt.is-active {
  background: var(--bg);
  color: var(--off-white);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}
.size-picker__dim {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.size-picker__unit {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 1px;
}
.tier__price .amount {
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.amount[data-amount].is-pulse {
  animation: amountPulse 0.45s ease;
}
@keyframes amountPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ============================================================
   SHIPPING BOX (frete grátis destacado)
============================================================ */
.shipping-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(45, 171, 137, 0.08);
  border: 1px solid rgba(45, 171, 137, 0.22);
  margin-bottom: 12px;
  color: var(--off-white);
}
.tier--featured .shipping-box {
  background: rgba(10, 10, 10, 0.06);
  border-color: rgba(10, 10, 10, 0.12);
  color: var(--bg);
}
.shipping-box__icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(45, 171, 137, 0.18);
  color: #2DAB89;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tier--featured .shipping-box__icon {
  background: rgba(10, 10, 10, 0.08);
  color: #1f7e62;
}
.shipping-box__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12.5px;
  line-height: 1.4;
}
.shipping-box__text strong { font-weight: 700; }
.shipping-box__value {
  font-size: 11.5px;
  opacity: 0.7;
  font-weight: 600;
}
.shipping-box__delivery {
  font-size: 11px;
  opacity: 0.72;
  font-weight: 500;
}

/* ============================================================
   BONUS BOX (escassez de presente)
============================================================ */
.bonus-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 128, 115, 0.10), rgba(232, 128, 115, 0.04));
  border: 1px solid rgba(232, 128, 115, 0.32);
  margin-bottom: 18px;
}
.tier--featured .bonus-box {
  background: linear-gradient(135deg, rgba(232, 128, 115, 0.14), rgba(232, 128, 115, 0.06));
  border-color: rgba(232, 128, 115, 0.42);
}
.bonus-box__pulse {
  flex: 0 0 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e88073;
  margin-top: 6px;
  animation: pulseGlow 1.6s ease-out infinite;
}
.bonus-box__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12.5px;
  line-height: 1.4;
}
.bonus-box__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: #e88073;
  letter-spacing: 0.005em;
}
.bonus-box__detail {
  font-size: 12px;
  color: var(--gray-1);
  line-height: 1.5;
}
.tier--featured .bonus-box__detail { color: rgba(10, 10, 10, 0.78); }
.bonus-box__detail strong { color: var(--off-white); font-weight: 700; }
.tier--featured .bonus-box__detail strong { color: var(--bg); }

/* ============================================================
   PRESS LOGOS (Visto em — mídia BR)
============================================================ */
.press {
  background: var(--bg);
  padding: 40px 0 32px;
  border-top: 1px solid var(--gray-4);
  border-bottom: 1px solid var(--gray-4);
}
.press__label {
  display: block;
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 26px;
  font-weight: 600;
}
.press__logos {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.press__item {
  color: var(--off-white);
  opacity: 0.55;
  transition: opacity 0.25s ease;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}
.press__item:hover { opacity: 0.95; }

/* Cada logo com fonte/peso próprio (identidade visual da publicação) */
.press__item--g1 {
  font: 800 24px/1 var(--font-sans);
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ff3030, #c41414);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
}
.press__item--g1:hover { opacity: 1; }
.press__item--folha {
  font: italic 600 26px/1 var(--font-display);
  letter-spacing: -0.01em;
}
.press__item--veja {
  font: 900 22px/1 var(--font-sans);
  letter-spacing: 0.02em;
}
.press__item--metro {
  font: 700 13px/1 var(--font-sans);
  letter-spacing: 0.26em;
}
.press__item--estadao {
  font: 500 24px/1 var(--font-display);
  letter-spacing: 0.01em;
}
.press__item--exame {
  font: 800 20px/1 var(--font-sans);
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .press { padding: 30px 0 24px; }
  .press__label { font-size: 9px; letter-spacing: 0.3em; margin-bottom: 18px; }
  .press__logos { gap: 22px; }
  .press__item--g1 { font-size: 20px; }
  .press__item--folha { font-size: 21px; }
  .press__item--veja { font-size: 18px; }
  .press__item--metro { font-size: 11px; letter-spacing: 0.22em; }
  .press__item--estadao { font-size: 19px; }
  .press__item--exame { font-size: 16px; }
}

/* ============================================================
   COUNTDOWN DE ESCASSEZ
============================================================ */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(232, 128, 115, 0.10);
  border: 1px solid rgba(232, 128, 115, 0.32);
  color: var(--off-white);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: -16px auto 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.countdown__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e88073;
  box-shadow: 0 0 0 0 rgba(232, 128, 115, 0.6);
  animation: pulseGlow 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0 rgba(232, 128, 115, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(232, 128, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 128, 115, 0); }
}
.countdown__label {
  opacity: 0.78;
}
.countdown__time {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: #e88073;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* Variant Dia dos Namorados — gradient coral + border mais quente */
.countdown--vday {
  background: linear-gradient(135deg, rgba(232, 128, 115, 0.18), rgba(232, 128, 115, 0.08));
  border-color: rgba(232, 128, 115, 0.45);
}
.countdown--vday .countdown__label { color: #f3aaa0; opacity: 1; font-weight: 600; }
@media (max-width: 560px) {
  .countdown {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 9px 16px 9px 12px;
    gap: 9px;
  }
  .countdown__time { font-size: 16px; }
  .countdown__pulse { width: 7px; height: 7px; }
}

/* Compact size picker dentro do modal */
.size-picker--compact {
  margin: 8px 0 0;
  padding: 3px;
  background: rgba(15, 82, 105, 0.08);
}
.size-picker--compact .size-picker__opt {
  padding: 6px 2px;
  flex-direction: row;
  gap: 3px;
}
.size-picker--compact .size-picker__dim {
  font-size: 11px;
}
.size-picker--compact .size-picker__opt.is-active {
  background: var(--bg);
  color: var(--off-white);
}
.tier {
  background: var(--bg-2);
  border: 1.5px solid var(--gray-4);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.28s cubic-bezier(.2,.6,.2,1);
}
.tier:hover {
  transform: translateY(-5px);
  border-color: var(--gray-3);
  background: var(--bg-3);
}
.tier--featured {
  background: var(--off-white);
  color: var(--bg);
  border-color: var(--off-white);
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(245, 241, 234, 0.08);
}
.tier--featured:hover {
  transform: scale(1.03) translateY(-5px);
  background: var(--off-white);
  border-color: var(--cream);
  box-shadow: 0 30px 70px rgba(245, 241, 234, 0.18);
}
.tier__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f0dfa8 0%, #d4b46a 45%, #b89548 100%);
  color: #1f1610;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 180, 106, 0.5);
  white-space: nowrap;
  box-shadow:
    0 6px 18px rgba(212, 180, 106, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.tier__badge::before,
.tier__badge::after {
  content: "✦";
  display: inline-block;
  margin: 0 6px;
  font-size: 9px;
  opacity: 0.7;
  vertical-align: 1px;
}
.tier__name {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--cream);
  margin-bottom: 8px;
}
.tier--featured .tier__name { color: rgba(10, 10, 10, 0.5); }
.tier__title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.tier__sub {
  font-size: 13px;
  color: var(--gray-2);
  margin-bottom: 18px;
  line-height: 1.5;
}
.tier--featured .tier__sub { color: rgba(10, 10, 10, 0.65); }
.tier__price {
  display: flex; align-items: baseline; gap: 6px;
}
.tier__price .currency { font-size: 14px; font-weight: 500; opacity: 0.6; }
.tier__price .amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-feature-settings: 'tnum';
  line-height: 1;
}
.tier__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}
.tier__features li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 13px;
  color: var(--gray-1);
  line-height: 1.45;
}
.tier--featured .tier__features li { color: rgba(10, 10, 10, 0.78); }
.tier__features li::before {
  content: "✓";
  color: var(--cream);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.4;
}
.tier--featured .tier__features li::before { color: var(--bg); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.14) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after { transform: translateX(100%); }
.btn--primary {
  background: var(--off-white);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--bg);
  color: var(--off-white);
  border: 1px solid var(--gray-3);
}
.btn--accent:hover {
  background: var(--bg-3);
  transform: translateY(-2px);
  border-color: var(--off-white);
}
.btn--block { width: 100%; }

/* ============================================================
   DEPOIMENTOS
============================================================ */
.testimonials { background: var(--bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tcard {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  border: 1px solid var(--gray-4);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.tcard:hover {
  transform: translateY(-3px);
  border-color: var(--gray-3);
  background: var(--bg-3);
}
.tcard__stars {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.tcard__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--off-white);
  line-height: 1.45;
  margin-bottom: 18px;
}
.tcard__author {
  display: flex; align-items: center; gap: 12px;
}
.tcard__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-4);
  border: 1px solid var(--gray-4);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--off-white);
  font-size: 13px;
}
.tcard__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--off-white);
}
.tcard__pet {
  font-size: 11.5px;
  color: var(--gray-2);
}

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--bg); }

.faq__wrap {
  max-width: 780px;
  margin-inline: auto;
}
.qa {
  border-bottom: 1px solid var(--gray-4);
}
.qa:first-child { border-top: 1px solid var(--gray-4); }
.qa__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--off-white);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  list-style: none;
  gap: 16px;
}
.qa__q::-webkit-details-marker { display: none; }
.qa[open] .qa__q { color: var(--cream); }
.qa__q:hover { color: var(--cream); }
.qa__q::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.qa[open] .qa__q::after { transform: rotate(45deg); }
.qa__a {
  padding-bottom: 18px;
  color: var(--gray-1);
  font-size: 14px;
  line-height: 1.7;
  max-width: 95%;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #050505;
  color: var(--gray-2);
  padding: 48px 0 22px;
  font-size: 13px;
  position: relative;
  border-top: 1px solid var(--gray-4);
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.foot-col h4 {
  color: var(--off-white);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { transition: color 0.2s ease; }
.foot-col a:hover { color: var(--off-white); }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--gray-4);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px;
  color: var(--gray-3);
  gap: 12px;
}

/* ============================================================
   MODAL
============================================================ */
.modal {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  z-index: 200;
  animation: fadeIn 0.25s ease;
}
.modal.is-open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal__panel {
  width: 100%;
  max-width: 920px;
  max-height: 92vh;
  background: var(--bg-2);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--off-white);
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 5;
  border: 1px solid var(--gray-4);
}
.modal__preview {
  background: var(--bg);
  position: relative;
  min-height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.modal__preview img { width: 100%; height: 100%; object-fit: cover; }
.modal__loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--off-white);
  text-align: center;
  padding: 28px;
}
.modal__loader .spin {
  width: 42px; height: 42px;
  border: 3px solid var(--gray-4);
  border-top-color: var(--off-white);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 18px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal__loader p { color: var(--gray-2); font-size: 13.5px; max-width: 280px; }
.modal__loader strong {
  color: var(--off-white); display: block; font-size: 17px; margin-bottom: 8px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
}

.modal__form {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto;
}
.modal__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin-bottom: 4px;
}
.modal__sub {
  font-size: 13.5px;
  color: var(--gray-2);
  margin-bottom: 10px;
}

.tier-pick {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.tier-pick__item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px;
  border: 1.5px solid var(--gray-4);
  background: var(--bg-3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}
.tier-pick__item:hover { border-color: var(--gray-3); background: var(--bg-4); }
.tier-pick__item.is-active {
  border-color: var(--off-white);
  background: var(--bg-4);
  border-width: 2px;
}
.tier-pick__radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gray-3);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.tier-pick__item.is-active .tier-pick__radio { border-color: var(--off-white); }
.tier-pick__item.is-active .tier-pick__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--off-white);
}
.tier-pick__info { flex: 1; min-width: 0; }
.tier-pick__name { font-weight: 600; font-size: 14px; color: var(--off-white); }
.tier-pick__desc { font-size: 11.5px; color: var(--gray-2); margin-top: 2px; }
.tier-pick__price { font-weight: 700; font-size: 16px; color: var(--off-white); flex-shrink: 0; }
.tier-pick__price small { font-size: 11px; opacity: 0.55; font-weight: 500; }

/* ============================================================
   RESPONSIVO — Mobile-first refinements
============================================================ */

/* Larger desktop reflow */
@media (max-width: 1100px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .container { padding-inline: 32px; }
}

/* Tablet / Mobile largo */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__bg {
    width: 100%;
    height: 460px;
    max-height: 58vh;
    order: -1;
  }
  .hero__bg img { object-position: center 30%; }
  .hero__content {
    padding: 32px clamp(20px, 5vw, 40px) 48px;
    gap: 14px;
    min-height: auto;
    justify-content: center;
  }
  .site-header {
    top: 50px;
    padding-inline: 16px;
  }
  .hero__top-fade { height: 110px; }
  .menu-btn { width: 38px; height: 38px; }
  .brand__logo { font-size: 24px; }
  .brand__sub { font-size: 8.5px; letter-spacing: 0.28em; margin-top: 3px; }
  .brand__symbol { width: 22px; height: 22px; }

  .process__grid,
  .tiers__grid,
  .tiers__grid--2col,
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tiers__grid--2col { max-width: 480px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-4px); }
  .tiers__grid { padding-top: 14px; }  /* espaço pro badge */

  .modal { padding: 0; align-items: stretch; }
  .modal__panel {
    grid-template-columns: 1fr;
    max-height: 100vh;
    height: 100vh;
    max-width: 100%;
    border-radius: 0;
    border: none;
    overflow-y: auto;
  }
  .modal__preview { min-height: 260px; max-height: 45vh; }
  .modal__form { padding: 24px 20px 32px; }

  .site-footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .foot-col:first-child { grid-column: 1 / -1; }
  .foot-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 10.5px;
  }
}

/* Mobile padrão (iPhone 12-15, Android) */
@media (max-width: 560px) {
  section { padding-block: 44px; }
  .container { padding-inline: 20px; }

  .top-bar {
    font-size: 9.5px;
    letter-spacing: 0.14em;
    padding: 9px 12px;
  }

  .hero__halftone {
    background-size: 3.6px 3.6px;
  }
  .hero__bg {
    height: 420px;
    max-height: 56vh;
  }
  .hero__bg img { object-position: center 28%; }
  .hero__content {
    padding: 28px 20px 36px;
    gap: 12px;
  }
  .site-header { top: 44px; }
  .hero__heading {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.1;
  }
  .hero__sub { font-size: 13.5px; }
  .hero__crumb { font-size: 9.5px; letter-spacing: 0.22em; gap: 6px; }
  .hero__crumb .dot { width: 2.5px; height: 2.5px; }

  .timbrado { font-size: 9px; letter-spacing: 0.22em; gap: 8px; }
  .timbrado::before, .timbrado::after { width: 16px; }

  .upload-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 12px;
  }
  .upload-card__icon { margin: 0 auto; width: 48px; height: 48px; flex: 0 0 48px; }
  .upload-card__icon::after { width: 20px; height: 20px; font-size: 14px; top: -5px; right: -5px; }
  .upload-card__title { font-size: 15.5px; }
  .upload-card__hint { font-size: 11.5px; line-height: 1.4; }

  .trust { gap: 10px; flex-direction: column; align-items: flex-start; }
  .trust__badge { padding: 6px 10px; font-size: 11px; }
  .trust__count { font-size: 11.5px; }

  .section-title { font-size: clamp(22px, 6.5vw, 28px); }
  .section-lead { font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
  .eyebrow { padding: 5px 11px; font-size: 9px; letter-spacing: 0.22em; margin-bottom: 10px; }

  .step { padding: 22px 18px 20px; }
  .step__title { font-size: 16.5px; }
  .step__text { font-size: 13.5px; }

  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery__item { border-radius: 10px; }
  .gallery__caption { font-size: 11px; bottom: 8px; left: 8px; }

  .tier {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }
  .tier__title { font-size: 19px; }
  .tier__sub { font-size: 12.5px; margin-bottom: 16px; }
  .tier__price { margin-bottom: 16px; padding-bottom: 14px; }
  .tier__price .amount { font-size: 42px; }
  .tier__features { gap: 7px; margin-bottom: 18px; }
  .tier__features li { font-size: 12.5px; gap: 8px; }
  .tier__badge {
    font-size: 8.5px;
    padding: 5px 11px;
    top: -10px;
    letter-spacing: 0.22em;
  }
  .size-picker__dim { font-size: 12px; }
  .size-picker__opt { padding: 8px 3px; }

  .tcard { padding: 22px 18px 20px; }
  .tcard__text { font-size: 14.5px; line-height: 1.5; margin-bottom: 16px; }
  .tcard__avatar { width: 36px; height: 36px; font-size: 12px; }
  .tcard__name { font-size: 12.5px; }
  .tcard__pet { font-size: 11px; }

  .qa__q {
    font-size: 14px;
    padding: 16px 0;
    gap: 14px;
    line-height: 1.4;
  }
  .qa__q::after { font-size: 22px; }
  .qa__a { font-size: 13px; padding-bottom: 16px; line-height: 1.65; }

  .btn { padding: 12px 18px; font-size: 12px; letter-spacing: 0.05em; }

  .site-footer { padding: 36px 0 16px; }
  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 24px;
  }
  .foot-col:first-child { grid-column: auto; }
  .foot-col h4 { font-size: 10.5px; margin-bottom: 10px; letter-spacing: 0.24em; }
  .foot-col ul { gap: 7px; }

  .modal__close { top: 12px; right: 12px; width: 34px; height: 34px; font-size: 16px; }
  .modal__form { padding: 22px 18px 28px; gap: 12px; }
  .modal__title { font-size: 22px; }
  .modal__sub { font-size: 12.5px; margin-bottom: 8px; }
  .tier-pick { gap: 8px; }
  .tier-pick__item { padding: 12px 11px; gap: 10px; border-radius: 14px; }
  .tier-pick__name { font-size: 13px; }
  .tier-pick__desc { font-size: 10.5px; }
  .tier-pick__price { font-size: 14.5px; }
  .tier-pick__price small { font-size: 10px; }
  .tier-pick__radio { width: 16px; height: 16px; }
}

/* Mobile mini (iPhone SE 1ª gen, Android pequeno) */
@media (max-width: 380px) {
  .container { padding-inline: 16px; }
  .top-bar { font-size: 8.5px; letter-spacing: 0.1em; padding: 8px 10px; }
  .hero__heading { font-size: 24px; }
  .hero__bg { height: 360px; max-height: 50vh; }
  .hero__content { padding: 24px 18px 32px; }
  .site-header { top: 40px; }
  .upload-card { padding: 18px 14px; }
  .gallery__grid { gap: 6px; }
  .tier { padding: 20px 16px 18px; }
  .tier__price .amount { font-size: 38px; }
  .tcard__text { font-size: 14px; }
  .section-title { font-size: 21px; }
}

/* Landscape phones — hero compacto */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    grid-template-columns: 1.2fr 1fr;
  }
  .hero__bg { height: auto; max-height: none; order: 0; }
  .hero__content {
    padding: 70px 24px 28px;
    min-height: auto;
  }
}

/* ============================================================
   STICKY CTA MOBILE (aparece após scroll do hero)
============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid var(--gray-4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex-shrink: 1;
}
.sticky-cta__price {
  font-size: 13px;
  color: var(--gray-2);
  font-weight: 500;
}
.sticky-cta__price strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--off-white);
  font-variant-numeric: tabular-nums;
  margin-left: 1px;
}
.sticky-cta__hint {
  font-size: 10.5px;
  color: #f3aaa0;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.sticky-cta__btn {
  flex-shrink: 0;
  background: var(--off-white);
  color: var(--bg);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(245, 241, 234, 0.22);
  transition: transform 0.2s ease;
}
.sticky-cta__btn:active { transform: scale(0.97); }
.sticky-cta__btn span {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.sticky-cta__btn:hover span { transform: translateX(3px); }

@media (max-width: 880px) {
  .sticky-cta { display: flex; }
  /* dá espaço pro footer não ficar embaixo do sticky */
  body.has-sticky-cta { padding-bottom: 80px; }
}

/* Utils */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   SCROLL REVEAL — fade-in suave quando section entra em vista
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   LAZY IMG FADE-IN — quando imagem termina de carregar
============================================================ */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.55s ease;
}
img[loading="lazy"].is-loaded {
  opacity: 1;
}

/* ============================================================
   ACCESSIBILITY — respeita prefers-reduced-motion
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  img[loading="lazy"] { opacity: 1; }
}

/* ============================================================
   FOCUS STATES (acessibilidade teclado)
============================================================ */
:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
  border-radius: 4px;
}
.upload-card:focus-within {
  border-color: var(--off-white);
  background: rgba(245, 241, 234, 0.08);
}
