/* 4.12: @import do Google Fonts removido deste CSS — foi movido para o <head>
   de cada página (com preconnect) para não bloquear o render.
   Mantido apenas fallback nas variáveis abaixo. */

/* ============================================
   VINIL3D — DESIGN EDITORIAL PREMIUM
   ============================================ */

:root {
  --color-bg: #0B0B0B;
  --color-bg-secondary: #0F0F0F;
  --color-surface: #111111;
  --color-surface-alt: #1A1A1A;
  --color-text: #F5F5F5;
  --color-text-secondary: #A0A0A0;
  --color-text-muted: #707070;
  --color-accent: #F2631C;
  --color-accent-hover: #D4520F;
  --color-accent-glow: rgba(242, 99, 28, 0.15);
  --color-border: #262626;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1400px;
}

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

/* Garante que o atributo HTML [hidden] realmente esconda o elemento.
   Sem isso, classes como .cart-summary-row / .cart-drawer-row (com
   display:flex) vencem o [hidden] por mesma especificidade e o
   elemento aparece mesmo "escondido" no markup. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.header.scrolled {
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(16px);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: currentColor;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  position: absolute;
  top: 0.75rem;
  left: 50%;
  z-index: 5;
  transform-origin: top center;
  transform: translateX(-50%) scale(2.7);
  transition: top 0.7s var(--ease-out), left 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.logo span { font-size: 0.85rem; opacity: 0.5; }

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

.header.scrolled .logo {
  top: 0.5rem;
  left: 3rem;
  transform: scale(1);
}

.header-nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }

.header-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity var(--transition);
}

.header-nav a:hover { opacity: 1; }

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: currentColor;
  opacity: 1;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}

.cart-icon:hover { opacity: 1; }
.cart-icon svg { width: 20px; height: 20px; }

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  color: inherit;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}

.header-icon svg { width: 20px; height: 20px; }

.header.scrolled .header-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.header.scrolled .header-icon:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.header.scrolled .cart-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.header.scrolled .cart-icon:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.cart-badge {
  position: absolute;
  top: -6px; right: -10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
}

.cart-badge:empty { display: none; }

.cart-badge.pulse {
  animation: cart-badge-pulse 0.5s var(--ease-out);
}

.cart-icon.shake {
  animation: cart-icon-shake 0.5s var(--ease-out);
}

@keyframes cart-badge-pulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.45); }
  70%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

@keyframes cart-icon-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  20%      { transform: translateX(-3px) rotate(-6deg); }
  40%      { transform: translateX(3px) rotate(6deg); }
  60%      { transform: translateX(-2px) rotate(-3deg); }
   80%      { transform: translateX(2px) rotate(3deg); }
}

/* ============================================
   MERCADO PAGO BRAND (diretrizes oficiais: símbolo + wordmark juntos)
   ============================================ */

.mp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.mp-brand-symbol {
  width: 24px;
  height: 15px;
  display: block;
  flex-shrink: 0;
}
.mp-brand-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .cart-badge.pulse,
  .cart-icon.shake {
    animation: none;
  }
}

.menu-toggle { display: none; }

/* ============================================
   SECTIONS GERAIS
   ============================================ */

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

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(242, 99, 28, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   BRAND SECTION
   ============================================ */

.section-brand {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(242, 99, 28, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(242, 99, 28, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.brand-grooves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.09);
  pointer-events: none;
  overflow: hidden;
}

.brand-grooves svg {
  width: 100%;
  max-width: 1800px;
  height: auto;
  animation: vinyl-spin 120s linear infinite;
}

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

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

.brand-lockup {
  position: relative;
  z-index: 1;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo {
  margin-bottom: 1.5rem;
  line-height: 0;
}

.brand-logo img {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.45;
}

.brand-tagline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-weight: 400;
}

.brand-desc {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.brand-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3.5rem;
  width: 100%;
}

.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  min-width: 110px;
}

.seal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  background: rgba(242, 99, 28, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.seal:hover .seal-icon {
  background: rgba(242, 99, 28, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 99, 28, 0.18);
}

.seal-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.seal-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.4;
  text-align: center;
}

.seal-text strong {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.1rem;
}

.compare-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
}

.compare-images img {
  width: 100%;
  border-radius: 4px;
  filter: contrast(1.08) saturate(1.05);
  opacity: 0.85;
}

/* ============================================
   SECTION FUNCIONAL (IMAGE + CARDS)
   Estilos definidos em lp-product.css
   ============================================ */

/* ============================================
   SECTION PROJETADO (TEXT ONLY)
   Estilos definidos em lp-product.css
   ============================================ */

/* ============================================
   SECTION BLEED FULL-WIDTH
   ============================================ */

/* ============================================
   SECTION DETAILS (CALLOUTS NA IMAGEM)
   ============================================ */

.details-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-image img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  filter: contrast(1.1) saturate(1.05);
}

.details-text {
  max-width: 420px;
}

.details-text h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.9;
  margin-bottom: 1rem;
}

.details-text .specs {
  display: grid;
  gap: 0.5rem;
}

.details-text .spec {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.details-text .spec dt {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  min-width: 120px;
}

.details-text .spec dd {
  font-weight: 300;
  color: var(--color-text-secondary);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-radius: 4px;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 0 40px var(--color-accent-glow);
  color: #fff;
}

.btn-lg {
  font-size: 0.85rem;
  padding: 1.05rem 2.75rem;
}

.btn-block { width: 100%; justify-content: center; }

/* ============================================
   EYEBROW (label superior)
   ============================================ */

.eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.eyebrow-accent {
  color: var(--color-accent);
  max-width: 100%;
  line-height: 1.4;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

/* ============================================
   1. HERO HOME
   ============================================ */

.hero-home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem 4rem;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(242, 99, 28, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(242, 99, 28, 0.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-home-grooves {
  position: absolute;
  top: 50%;
  right: -20%;
  width: 110vmin;
  height: 110vmin;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  animation: vinyl-spin 180s linear infinite;
  z-index: 1;
}

.hero-home-grooves svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-home-grid { position: relative; z-index: 2; }

.hero-home-grooves svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-home-grooves { animation: none; }
}

.hero-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  /* Layout desktop: text | stack; CTA em row separada embaixo de tudo. */
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "text stack"
    "cta   cta";
  align-items: center;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-home-text { grid-area: text; max-width: 580px; }
.hero-home-stack { grid-area: stack; }
.hero-home-cta { grid-area: cta; }

.hero-home-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
  color: var(--color-text);
}

.hero-home-subhead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 0 2.5rem;
}

.hero-home-cta .btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease-out);
}

.hero-home-cta .btn:hover svg {
  transform: translateX(4px);
}

.hero-home-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  justify-items: center;
  perspective: 1200px;
}

.hero-home-stack-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero-home-stack-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
  transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out);
}

.hero-home-stack-item--top {
  --tx: -5rem;
  --tr: -4deg;
  --ts: 1.32;
  transform: translateY(var(--tx)) rotate(var(--tr)) scale(var(--ts));
  z-index: 1;
}

.hero-home-stack-item--bottom {
  --tx: 4rem;
  --tr: 3deg;
  --ts: 1.32;
  transform: translateY(var(--tx)) rotate(var(--tr)) scale(var(--ts));
}

.hero-home-stack-link:hover .hero-home-stack-item--top,
.hero-home-stack-link:focus-visible .hero-home-stack-item--top {
  --tx: -5.75rem;
  --ts: 1.36;
  filter: drop-shadow(0 45px 85px rgba(0, 0, 0, 0.7));
}

.hero-home-stack-link:hover .hero-home-stack-item--bottom,
.hero-home-stack-link:focus-visible .hero-home-stack-item--bottom {
  --tx: 3.25rem;
  --ts: 1.36;
  filter: drop-shadow(0 45px 85px rgba(0, 0, 0, 0.7));
}

.hero-home-stack-item img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.08) saturate(1.05);
}

.hero-home-stack-label {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFF;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 106, 19, 0.5);
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  /* Evita quebra de linha que cortava o label em 2 linhas dentro da imagem.
     Em telas estreitas, max-width mantém o label dentro da imagem. */
  white-space: nowrap;
  max-width: calc(100% - 1.8rem);
}

/* ============================================
   2. COLEÇÃO (editorial)
   ============================================ */

.collection {
  padding: 3rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.collection-intro {
  max-width: 720px;
  margin: 0 0 1.5rem;
}

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.collection-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.55;
  max-width: 520px;
  margin: 0;
}

.collection-item {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  align-items: stretch;
  gap: 3.5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}

.collection-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.collection-item--reverse {
  grid-template-columns: 0.85fr 1.55fr;
}

.collection-item--reverse .collection-item-image-link {
  order: 2;
}

.collection-item--reverse .collection-item-image-link .collection-item-image {
  justify-content: flex-end;
}

.collection-item--reverse .collection-item-text {
  order: 1;
}

.collection-item-image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.collection-item-image-link img {
  transition: transform 0.4s var(--ease-out);
}

.collection-item-image-link:hover img {
  transform: scale(1.02);
}

.collection-item-image {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.collection-item-image::after {
  content: '';
  position: absolute;
  inset: -3rem;
  background: radial-gradient(ellipse at center, rgba(242, 99, 28, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.collection-item-image img {
  width: 92%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  filter: contrast(1.1) saturate(1.05);
}

.collection-item-text {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection-item-actions {
  margin-top: auto;
}

.collection-item-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  position: relative;
  padding-bottom: 0.85rem;
}

.collection-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.collection-item-title a:hover {
  color: var(--color-accent);
}

.collection-item-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--color-accent);
}

.collection-item-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  white-space: nowrap;
}

.collection-item-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  list-style: none;
}

.collection-item-list li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.collection-item-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
}

.collection-item-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0 0 0;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}

.price-currency {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  top: -0.75rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.collection-item-trust {
  display: flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.3;
}

.trust-main {
  font-weight: 600;
  color: var(--color-text);
}

.trust-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.collection-item-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  min-height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.btn-text-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.btn-text-link:hover {
  color: var(--color-text);
  border-color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.04);
}

.btn-text-link:hover svg {
  transform: translateX(3px);
}

.collection-item .btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease-out);
}

.collection-item .btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   4. CONFIDENCE BAR
   ============================================ */

.confidence-bar {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem;
}

.hero-home .confidence-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: none;
  z-index: 3;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 8.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  opacity: 0.6;
  transition: opacity 0.3s var(--ease-out), color 0.3s var(--ease-out);
  animation: scroll-hint-bounce 2s var(--ease-out) infinite;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus-visible {
  opacity: 1;
  color: var(--color-accent);
  outline: none;
}

.hero-scroll-hint:focus-visible {
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-accent);
  border-radius: 4px;
}

.hero-scroll-hint svg {
  width: 28px;
  height: 28px;
  display: block;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

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

.confidence-items {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.confidence-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.confidence-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================
   5. CTA FINAL
   ============================================ */

.cta-final-home {
  position: relative;
  overflow: hidden;
  padding: 9rem 3rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.cta-final-home-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(242, 99, 28, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-home-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.cta-final-home-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

.cta-final-home .btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease-out);
}

.cta-final-home .btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   CART PAGE (DARK THEME)
   ============================================ */

.cart-page-section {
  min-height: 100vh;
  padding: 8rem 3rem 4rem;
}

.cart-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.cart-wrapper h1 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.cart-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.25rem;
  border-radius: 4px;
}

.cart-item-image {
  width: 80px; height: 80px;
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 0.25rem;
}

.cart-item-info .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-accent);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-quantity button {
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.cart-item-quantity button:hover {
  border-color: var(--color-text-secondary);
  color: var(--color-text);
}

.cart-item-quantity span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  padding: 0.25rem;
  transition: color var(--transition);
  flex-shrink: 0;
}

.cart-item-remove:hover { color: var(--color-accent); }

.cart-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
  border-radius: 4px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

.cart-summary-row.shipping { color: var(--color-accent); font-weight: 600; }

.cart-summary-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1rem 0;
}

.cart-summary-row.total {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty svg { width: 48px; height: 48px; color: var(--color-text-muted); margin-bottom: 1.5rem; }

.cart-empty p { color: var(--color-text-secondary); margin-bottom: 2rem; }

/* ============================================
   RETURN PAGES
   ============================================ */

.return-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 3rem;
}

.return-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.return-icon.success { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.return-icon.pending { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.return-icon.error { background: rgba(242, 99, 28, 0.1); color: #e85d04; }

.return-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.return-page p {
  color: var(--color-text-secondary);
  max-width: 400px;
  margin-bottom: 2rem;
}

/* ============================================
   TOAST
   ============================================ */

.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  /* 4.10: z-index acima do cart-drawer (2000) para não ficar escondido
     quando o drawer lateral é aberto no desktop */
  z-index: 2100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 240px;
  max-width: calc(100vw - 4rem);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  color: var(--color-text);
  padding: 0.9rem 1.25rem 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(140%) scale(0.9);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.3s ease;
  overflow: hidden;
}

/* 4.10: quando o cart-drawer está aberto, esconde o toast no mobile
   (no desktop ele aparece à esquerda do drawer de 420px).
   No mobile o drawer ocupa a tela inteira, então o toast só atrapalha. */
body.cart-drawer-open .toast { display: none; }

.toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  animation: toast-bounce 0.55s var(--ease-out);
}

.toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: toast-icon-pop 0.5s var(--ease-out) 0.15s both;
}

.toast-icon svg {
  width: 16px;
  height: 16px;
}

.toast-text {
  flex: 1;
  line-height: 1.3;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--color-accent);
  transform-origin: left center;
  transform: scaleX(1);
  animation: toast-progress 2.5s linear forwards;
}

.toast:not(.show) .toast-progress {
  animation: none;
  transform: scaleX(0);
}

@keyframes toast-bounce {
  0%   { transform: translateY(140%) scale(0.9); }
  60%  { transform: translateY(-8px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes toast-icon-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes toast-progress {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .toast,
  .toast.show,
  .toast-icon {
    animation: none;
    transition: opacity 0.2s ease;
  }
  .toast-progress { display: none; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-done { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Mobile-first: garante que .reveal apareça IMEDIATAMENTE, sem depender do
   IntersectionObserver. Mantém a animação só no desktop. Evita que o usuário
   veja o conteúdo esmaecido durante o scroll inicial. */
@media (max-width: 768px) {
  .reveal,
  .reveal-done {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   PARALLAX
   ============================================ */

.parallax { will-change: transform; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 3rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer a { color: var(--color-text-secondary); transition: color var(--transition); }
.footer a:hover { color: var(--color-text); }

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition);
}

.footer-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-link:hover svg {
  opacity: 1;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 1024px) {
  .details-text {
    max-width: 100%;
    padding: 0;
  }

  .header { padding: 0 1.5rem; }

  .logo {
    top: 0.5rem;
    left: 50%;
    transform-origin: top center;
    transform: translateX(-50%) scale(2.3);
  }

  .header.scrolled .logo {
    top: 0.5rem;
    left: 1.5rem;
    transform: scale(1);
  }

  .hero-home {
    padding: 7rem 2rem 3.5rem;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
    /* Mobile: empilha text → stack → CTA. CTA fica abaixo das fotos. */
    grid-template-areas:
      "text"
      "stack"
      "cta";
    gap: 2.5rem;
    text-align: center;
    /* Sem align-items: center (do desktop) — ele colapsava a row do CTA pra 0px. */
    align-items: stretch;
  }

  .hero-home-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-home-headline br { display: none; }

  .eyebrow-accent {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero-home-subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home-stack {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
  }

  .hero-home-stack-label {
    position: absolute;
    bottom: 0.6rem;
    left: 0.6rem;
    right: auto;
    top: auto;
    font-size: 0.6rem;
    max-width: calc(100% - 1.2rem);
    white-space: nowrap;
    text-align: left;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .hero-home-stack-item {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .collection {
    padding: 3.5rem 2rem 3rem;
  }

  .collection-intro { margin-bottom: 2rem; }

  .collection-item,
  .collection-item--reverse {
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    grid-template-areas:
      "eyebrow"
      "title"
      "image"
      "price"
      "desc"
      "list"
      "trust"
      "actions";
    gap: 0;
    padding: 4rem 0;
    align-items: auto;
  }

  /* Desempacota os filhos de .collection-item-text para que sejam
     grid items diretos do .collection-item e possam receber grid-area. */
  .collection-item-text,
  .collection-item--reverse .collection-item-text {
    display: contents;
    text-align: center;
  }

  .collection-item-text .eyebrow {
    grid-area: eyebrow;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .collection-item-title { grid-area: title; text-align: left; }

  .collection-item-image-link { grid-area: image; min-width: 0; }

  .collection-item-desc { grid-area: desc; }

  .collection-item-list { grid-area: list; }
  .collection-item-list li { text-align: left; }

  .collection-item-price { grid-area: price; margin-bottom: 0; padding: 0.75rem 0; border-top: none; }

  .collection-item-trust { grid-area: trust; }

  .collection-item-actions { grid-area: actions; gap: 1rem; margin-top: 0; }

  .collection-item-image img { max-height: 45vh; }

  .cta-final-home { padding: 6rem 2rem; }
}

@media (max-width: 640px) {
  .section, .section-faq, .section-funcional, .section-projetado {
    padding: 2.5rem 1.25rem;
    min-height: auto;
  }

  .hero { padding: 4rem 1.25rem; }

  .funcional-image { height: 50vh; }

  .funcional-content {
    padding: 2rem 1.25rem;
  }

  .funcional-header h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  .funcional-card { padding: 1rem; gap: 0.75rem; }

  .projetado-content h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  .cart-item { flex-wrap: wrap; }
  .cart-item-quantity { margin-left: auto; }

  /* Header mobile: mostra Instagram + Carrinho inline (sem hamburger).
     Igual ao que lp-product.css faz na LP escorredor. */
  .header-nav {
    display: flex;
    position: static;
    align-items: center;
    flex-direction: row;
    gap: 0;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .header-nav a { display: flex; }

  .menu-toggle { display: none; }

  .toast { left: 1rem; right: 1rem; bottom: 1rem; text-align: center; }
  .section-brand { padding: 3.5rem 1.25rem 3rem; }

  /* Touch target do cart icon: garante >= 44px no mobile (Apple HIG) */
  .header-icon,
  .cart-icon { padding: 0.75rem; }
  .header-icon svg,
  .cart-icon svg { width: 22px; height: 22px; }
  .brand-seals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.75rem;
    justify-items: center;
  }
  .seal { min-width: 0; }
  .seal-icon { width: 64px; height: 64px; }
  .seal-icon svg { width: 28px; height: 28px; }

  .hero-home {
    padding: 5.5rem 1.25rem 3rem;
    min-height: auto;
  }

  /* Logo mobile: pequeno e à esquerda pra dar espaço ao nav (Instagram + Carrinho).
     No estado scroll continua pequeno à esquerda. */
  .logo {
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%) scale(1);
    transform-origin: center left;
  }

  .header.scrolled .logo {
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%) scale(1);
    transform-origin: center left;
  }

  .hero-home-grid { gap: 3rem; }

  .hero-home-headline {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .hero-home-headline br { display: inline; }

  .eyebrow-accent {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    line-height: 1.5;
  }

  .hero-home-cta .btn { width: 100%; justify-content: center; }

  .hero-home-stack {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .hero-home-stack-item--top { transform: translateY(-2rem) rotate(-2deg) scale(1.08); }
  .hero-home-stack-item--bottom { transform: translateY(1.5rem) rotate(1.5deg) scale(1.08); }

  .collection {
    padding: 2.5rem 1.25rem 2rem;
  }

  .collection-intro { margin-bottom: 1.5rem; }

  .collection-item,
  .collection-item--reverse {
    padding: 2rem 0 2.5rem;
    gap: 1.5rem;
  }

  .collection-item-text .eyebrow {
    margin-bottom: 0.35rem;
  }

  .collection-item-title {
    font-size: clamp(3.2rem, 7vw, 4.75rem);
    margin-bottom: 0.75rem;
  }
  .collection-item-list { margin-bottom: 1.5rem; }
  .collection-item-price { margin-bottom: 1.25rem; padding: 1rem 0; }
  .collection-item-actions { flex-direction: column; align-items: stretch; gap: 0.5rem; }

  /* Confidence bar mobile: 2x2 grid de pills com ícone + texto.
     Mais compacto e visualmente interessante que a lista vertical. */
  .confidence-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .confidence-item {
    font-size: 0.78rem;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    align-items: center;
  }

  .confidence-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }

  .cta-final-home { padding: 4.5rem 1.25rem; }

  body { overflow-x: hidden; }
  .price-amount { font-size: 5rem; }
  .collection-item-desc { white-space: normal; }
  .hero-home-stack-label { white-space: normal; max-width: calc(100% - 1.2rem); }
}

/* Telas muito estreitas (Galaxy A14 360px, etc): reduz scale da stack do
   hero para evitar overflow horizontal e aproximação das imagens. */
@media (max-width: 400px) {
  .hero-home-stack-item--top { transform: translateY(-2rem) rotate(-3deg) scale(1.0); }
  .hero-home-stack-item--bottom { transform: translateY(1.75rem) rotate(2deg) scale(1.0); }
}

/* ============================================
   RESPONSIVO — Medium / small desktops (1025–1400px)
   ============================================ */

@media (max-width: 1400px) {
  body { overflow-x: hidden; }

  .logo {
    top: 0.5rem;
    left: 1.5rem;
    transform-origin: top left;
    transform: scale(1);
  }

  .header.scrolled .logo {
    top: 0.5rem;
    left: 1.5rem;
    transform: scale(1);
  }

  .hero-home {
    padding: 5rem 0 5rem;
    background: var(--color-bg);
  }

  .hero-home-grid {
    gap: 2rem;
    align-items: center;
    padding: 0 1.5rem;
  }

  .hero-home-stack {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-home .confidence-bar {
    position: relative;
    margin-top: 3rem;
  }

  .hero-home-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
  }

  .hero-home-stack-item--top {
    --tx: -2rem;
    --tr: -2deg;
    --ts: 1.05;
  }

  .hero-home-stack-item--bottom {
    --tx: 1.5rem;
    --tr: 2deg;
    --ts: 1.05;
  }

  .hero-home-stack-link:hover .hero-home-stack-item--top,
  .hero-home-stack-link:focus-visible .hero-home-stack-item--top {
    --tx: -2.5rem;
    --ts: 1.08;
  }

  .hero-home-stack-link:hover .hero-home-stack-item--bottom,
  .hero-home-stack-link:focus-visible .hero-home-stack-item--bottom {
    --tx: 1rem;
    --ts: 1.08;
  }

  .hero-home-grooves {
    right: -40%;
    width: 80vmin;
    height: 80vmin;
  }

  .collection-item,
  .collection-item--reverse {
    gap: 2.5rem;
  }

  .collection-item-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .price-amount {
    font-size: 5.5rem;
  }

  .section-brand {
    padding: 4rem 2rem 4rem;
  }

  .brand-tagline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
  }

  .cta-final-home {
    padding: 5rem 2rem;
  }
}

/* ============================================
   RESPONSIVO — Telas curtas (≤ 800px de altura)
   ============================================ */

@media (max-height: 800px) {
  body { overflow-x: hidden; }

  /* Garante que tudo apareça em telas curtas: o IntersectionObserver
     nem sempre dispara reveal-done para elementos que ficam fora da
     viewport em 1366x768. */
  .reveal,
  .reveal-done,
  [class*="reveal"] {
    opacity: 1 !important;
    transform: none !important;
  }

  .logo {
    top: 0.5rem;
    left: 1.5rem;
    transform-origin: top left;
    transform: scale(1);
  }

  .header.scrolled .logo {
    top: 0.5rem;
    left: 1.5rem;
    transform: scale(1);
  }

  .hero-home {
    min-height: auto;
    padding: 5rem 0 0;
    justify-content: flex-start;
  }

  .hero-home-grid {
    gap: 2rem;
    align-items: center;
    padding: 0 1.5rem;
  }

  .hero-home-stack {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-home-headline {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    margin: 0 0 0.75rem;
  }

  .hero-home-subhead {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    margin: 0 0 1.25rem;
  }

  .hero-home-stack-item--top {
    --tx: -1.25rem;
    --tr: -2deg;
    --ts: 1;
  }

  .hero-home-stack-item--bottom {
    --tx: 1rem;
    --tr: 2deg;
    --ts: 1;
  }

  .hero-home-stack-link:hover .hero-home-stack-item--top,
  .hero-home-stack-link:focus-visible .hero-home-stack-item--top {
    --tx: -1.5rem;
    --ts: 1.04;
  }

  .hero-home-stack-link:hover .hero-home-stack-item--bottom,
  .hero-home-stack-link:focus-visible .hero-home-stack-item--bottom {
    --tx: 0.5rem;
    --ts: 1.04;
  }

  .hero-home-grooves {
    display: block;
    right: -25%;
    width: 70vmin;
    height: 70vmin;
    opacity: 1;
    color: rgba(255, 255, 255, 0.09);
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-home .confidence-bar {
    position: relative;
    margin-top: 2rem;
  }

  .collection-item,
  .collection-item--reverse {
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .collection-item-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  }

  .price-amount {
    font-size: 4rem;
  }

  .price-currency {
    font-size: 1.5rem;
    top: -0.5rem;
  }

  .section-brand {
    padding: 2.5rem 2rem 2rem;
  }

  .brand-tagline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 0.5rem;
  }

  .brand-desc {
    font-size: 15px;
    margin: 0 auto 0.75rem;
  }

  .brand-seals {
    gap: 0.75rem 1.5rem;
  }

  .seal-icon {
    width: 56px;
    height: 56px;
  }

  .seal-icon svg {
    width: 24px;
    height: 24px;
  }

  .cta-final-home {
    padding: 3.5rem 2rem;
  }

  .cta-final-home-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }
}

/* Overflow do stack do hero: labels ficam abaixo da imagem no mobile,
   então o container precisa de overflow visible. */
@media (max-width: 1024px) {
  .hero-home-stack { overflow: visible; }
}
