/* ═══════════════════════════════════════════════════════════════════════════
   DIAS PARFUM — Design System
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ───────────────────────────────────────────────────── */
:root {
  /* Colors */
  --bg:            #EDEAE5;
  --bg-alt:        #E5E1DB;
  --card:          #F5F2EE;
  --border:        #D4CFC9;
  --text:          #1A1A1A;
  --text-muted:    #6B6560;
  --accent:        #8B7355;
  --accent-light:  #A08968;
  --accent-dark:   #6B5840;
  --dark:          #1A1A1A;
  --white:         #ffffff;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 999px;
}

/* ── GLOBALS ─────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
}
h1, h2, h3, h4 { font-family: var(--font-serif); }

/* ── SCROLLBAR ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── ICON ────────────────────────────────────────────────────────────────── */
.icon {
  width: 24px;
  height: 24px;
  color: currentColor;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-sm { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; }

/* ── ACCENT GRADIENT TEXT ────────────────────────────────────────────────── */
.text-accent-gradient,
.text-gold-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CARD HOVER ──────────────────────────────────────────────────────────── */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(139, 115, 85, 0.1);
}

/* ── QUIZ OPTIONS ────────────────────────────────────────────────────────── */
.quiz-option {
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  cursor: pointer;
}
.quiz-option:hover {
  border-color: var(--accent);
  background: rgba(139, 115, 85, 0.04);
}
.quiz-option.selected {
  border-color: var(--accent);
  background: rgba(139, 115, 85, 0.07);
}
.quiz-option.selected .quiz-option-title {
  color: var(--accent);
}

/* ── SIZE BUTTONS ────────────────────────────────────────────────────────── */
.size-btn {
  transition: all 0.2s ease;
}
.size-btn.active {
  background: rgba(139, 115, 85, 0.1);
  color: var(--accent);
  font-weight: 500;
  border-color: var(--accent) !important;
}

/* ── CARD IN ORDER ───────────────────────────────────────────────────────── */
.card-in-order {
  border-color: rgba(139, 115, 85, 0.4) !important;
  box-shadow: 0 0 0 1px rgba(139, 115, 85, 0.15);
}

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
.fade-in {
  animation: fadeIn 0.5s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PROGRESS BAR ────────────────────────────────────────────────────────── */
.progress-bar { transition: width 0.4s cubic-bezier(.4,0,.2,1); }

/* ── SECTION TOGGLE ──────────────────────────────────────────────────────── */
.section-hidden { display: none !important; }

/* ── PRODUCT PLACEHOLDER ─────────────────────────────────────────────────── */
.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}

/* ── WHATSAPP PULSE ──────────────────────────────────────────────────────── */
.wa-btn { animation: waPulse 2.5s infinite; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

/* ── ACCENT DIVIDER ──────────────────────────────────────────────────────── */
.accent-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto;
}

/* ── INPUT FOCUS ─────────────────────────────────────────────────────────── */
input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(139,115,85,0.12) !important;
}

/* ── ACCENT BUTTON ───────────────────────────────────────────────────────── */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(139,115,85,0.2);
}

/* ── OUTLINE BUTTON ──────────────────────────────────────────────────────── */
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline:hover {
  border-color: rgba(139,115,85,0.4);
  background: rgba(139,115,85,0.04);
}

/* ── CATALOG CARD ────────────────────────────────────────────────────────── */
.catalog-card {
  transition: all 0.25s ease;
  border: 1px solid var(--border);
}
.catalog-card:hover {
  border-color: rgba(139,115,85,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(139,115,85,0.1);
}

/* ── BADGE ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-accent { background: rgba(139,115,85,0.1); color: var(--accent); }

/* ── MODAL ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
}
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeIn 0.25s ease both;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-body { transition: max-height 0.3s ease; }

/* ── PERFUME IMAGE ───────────────────────────────────────────────────────── */
.img-padrao {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
}

/* ── DECANTE HERO ────────────────────────────────────────────────────────── */
.decante-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f7f3ec 60%, #ede8df 100%);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(139, 115, 85, 0.07), inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(212, 207, 201, 0.45);
}
.decante-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.10));
  animation: heroFloat 4.5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── CARD DESTAQUE (featured result card) ────────────────────────────────── */
.card-destaque {
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.18), 0 8px 28px rgba(212, 175, 55, 0.13);
  transform: scale(1.02);
  transform-origin: center top;
}
.card-destaque:hover {
  transform: scale(1.02) translateY(-3px);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25), 0 16px 36px rgba(212, 175, 55, 0.18);
}

/* ── FLOAT ANIMATION (featured card image) ───────────────────────────────── */
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.float-img {
  animation: floatImg 3.2s ease-in-out infinite;
}

/* ── CART OVERLAY ────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(3px);
  z-index: 190;
  display: none;
}
.cart-overlay.open { display: block; }

/* ── CART PANEL ──────────────────────────────────────────────────────────── */
.cart-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 400px;
  background: var(--card);
  border-left: 1px solid var(--border);
  z-index: 195;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(26, 26, 26, 0.08);
  overflow: hidden;
}
.cart-panel.open { transform: translateX(0); }

/* ── FILTER CHIP ─────────────────────────────────────────────────────────── */
.filter-chip {
  padding: 5px 13px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.filter-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(139, 115, 85, 0.04);
}
.filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 500;
}

/* ── VARIANT ROW ─────────────────────────────────────────────────────────── */
.variant-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.variant-row.in-cart {
  border-color: var(--accent);
  background: rgba(139, 115, 85, 0.06);
}

/* ── QUANTITY BUTTON ─────────────────────────────────────────────────────── */
.qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 0;
}
.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(139, 115, 85, 0.06);
}

/* ── HIDE SCROLLBAR ──────────────────────────────────────────────────────── */
.scroll-x { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.scroll-x::-webkit-scrollbar { display: none; }

/* ── CART POP (fly-to-cart feedback) ─────────────────────────────────────── */
.cart-pop { animation: cartPop 0.3s cubic-bezier(0.36,0.07,0.19,0.97); }
@keyframes cartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25); }
  70%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUIZ ANALYSIS EXPERIENCE — Curadoria olfativa premium
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── PARTICLES LAYER ─────────────────────────────────────────────────────── */
.analysis-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.analysis-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #A08968;
  opacity: 0;
  animation: analysisDotFloat var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes analysisDotFloat {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  18%, 82% {
    opacity: var(--op, 0.28);
  }
  50% {
    opacity: var(--op, 0.28);
    transform: translate(var(--tx, 18px), var(--ty, -18px)) scale(1);
  }
}

/* ── ANALYSIS ORB / RINGS ────────────────────────────────────────────────── */
.analysis-orb-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.analysis-glow {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,115,85,0.16) 0%, transparent 68%);
  animation: analysisGlowPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes analysisGlowPulse {
  0%, 100% { opacity: 0.45; transform: scale(1);    }
  50%       { opacity: 1;    transform: scale(1.18); }
}

.analysis-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,115,85,0.28);
  animation: analysisRingPulse 3s ease-in-out infinite;
}

.analysis-ring-outer {
  width: 68px;
  height: 68px;
  animation-delay: 0s;
}

.analysis-ring-inner {
  width: 44px;
  height: 44px;
  animation-delay: 0.45s;
  border-color: rgba(139,115,85,0.16);
}

@keyframes analysisRingPulse {
  0%, 100% { transform: scale(1);    opacity: 0.4; }
  50%       { transform: scale(1.09); opacity: 0.9; }
}

.analysis-orb-center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── ANALYSIS LINE ACCENT ────────────────────────────────────────────────── */
.analysis-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,115,85,0.5), transparent);
  margin: 0 auto 20px;
  flex-shrink: 0;
}

/* ── ANALYSIS MESSAGE — protagonista da tela ─────────────────────────────── */
.analysis-message {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.48s cubic-bezier(.4,0,.2,1), transform 0.48s cubic-bezier(.4,0,.2,1);
  font-size: clamp(1.5rem, 5.5vw, 2.15rem);
  color: rgba(245,242,238,0.92);
  line-height: 1.28;
  min-height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.analysis-message.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANALYSIS LOADER — 3 pontos dourados pulsantes ───────────────────────── */
.analysis-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.analysis-loader-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8B7355;
  animation: analysisLoaderPulse 1.6s ease-in-out infinite;
}

.analysis-loader-dot:nth-child(1) { animation-delay: 0s;    }
.analysis-loader-dot:nth-child(2) { animation-delay: 0.28s; }
.analysis-loader-dot:nth-child(3) { animation-delay: 0.56s; }

@keyframes analysisLoaderPulse {
  0%, 100% { opacity: 0.18; transform: scale(0.72); box-shadow: none; }
  50%       { opacity: 0.88; transform: scale(1.18); box-shadow: 0 0 10px rgba(139,115,85,0.42); }
}

/* ── RESULT PRIMARY BADGE ────────────────────────────────────────────────── */
.result-primary-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px 4px 9px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  box-shadow: 0 2px 10px rgba(139,115,85,0.35);
}

/* ── RESULT PREMIUM BLOCKS ───────────────────────────────────────────────── */
.result-premium-block {
  padding: 11px 13px;
  border-radius: var(--radius-md);
  background: rgba(139,115,85,0.05);
  border: 1px solid rgba(139,115,85,0.11);
}

.result-premium-block-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
  font-family: var(--font-sans);
}

/* ── RESULT INSIGHT CARD (featured first card) ───────────────────────────── */
.result-insight-card {
  border-color: rgba(139,115,85,0.22) !important;
  box-shadow: 0 0 0 1px rgba(139,115,85,0.12), 0 8px 32px rgba(139,115,85,0.1);
}
.result-insight-card:hover {
  box-shadow: 0 0 0 1px rgba(139,115,85,0.2), 0 16px 40px rgba(139,115,85,0.14);
}

/* ── REDUCED MOTION ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .analysis-dot,
  .analysis-ring,
  .analysis-glow { animation: none !important; opacity: 0.25; }
  .analysis-message { transition: none !important; transform: none !important; }
  .analysis-loader-dot { animation: none !important; opacity: 0.45; }
}

/* ══════════════════════════════════════════════════════════════════════════
   PREMIUM MENU DRAWER
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Drawer base ──────────────────────────────────────────────────────────── */
.premium-menu-drawer {
  background: #F5F2EE;
  border-right: 1px solid #D4CFC9;
  box-shadow: 4px 0 40px rgba(26,26,26,0.10);
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.premium-menu-header {
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(212,207,201,0.75);
  background: #F5F2EE;
  flex-shrink: 0;
}

/* ── Kicker / Eyebrow ────────────────────────────────────────────────────── */
.premium-menu-kicker {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-sans);
  margin-top: 14px;
  margin-bottom: 4px;
}

/* ── Subtitle ─────────────────────────────────────────────────────────────── */
.premium-menu-subtitle {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-muted);
  font-family: var(--font-sans);
  max-width: 195px;
}

/* ── Close button ─────────────────────────────────────────────────────────── */
.premium-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D4CFC9;
  color: var(--text-muted);
  background: #F5F2EE;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.premium-menu-close:hover {
  background: #E5E1DB;
  border-color: rgba(139,115,85,0.35);
  color: var(--accent);
}

/* ── Search input ─────────────────────────────────────────────────────────── */
.premium-menu-search {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border-radius: 14px;
  border: 1px solid #D4CFC9;
  background: #FAFAF8;
  color: var(--text);
  font-family: var(--font-sans);
  outline: none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.premium-menu-search::placeholder { color: #A09A94; }
.premium-menu-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,115,85,0.08);
}

/* ── Divider ──────────────────────────────────────────────────────────────── */
.premium-menu-divider {
  height: 1px;
  background: rgba(212,207,201,0.75);
  margin: 0 20px;
}

/* ── Section ──────────────────────────────────────────────────────────────── */
.premium-menu-section {
  padding: 16px 20px;
}

/* ── Section title ────────────────────────────────────────────────────────── */
.premium-menu-section-title {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-sans);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.premium-menu-section-title::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.55;
}

/* ── Filter pills — light premium version ─────────────────────────────────── */
.menu-pill {
  background: transparent;
  border: 1px solid #D4CFC9;
  color: #6B6560;
  border-radius: var(--radius-full);
  font-size: 11px;
  padding: 5px 13px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease,
              color 0.18s ease, box-shadow 0.18s ease;
  font-family: var(--font-sans);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.menu-pill:hover:not(.on) {
  background: rgba(139,115,85,0.06);
  border-color: rgba(139,115,85,0.3);
  color: var(--accent);
}
.menu-pill.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(139,115,85,0.22);
}

/* ── Reset / Redefinir button ─────────────────────────────────────────────── */
.premium-menu-reset {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid #D4CFC9;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.premium-menu-reset:hover {
  border-color: rgba(139,115,85,0.35);
  color: var(--accent);
  background: rgba(139,115,85,0.04);
}

/* ── Navigation links ─────────────────────────────────────────────────────── */
.premium-menu-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-sans);
  text-decoration: none;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  margin-bottom: 2px;
  transition: background 0.18s ease, color 0.18s ease;
}
.premium-menu-link:hover {
  background: rgba(139,115,85,0.06);
  color: var(--accent);
}
.premium-menu-link.active-link {
  background: rgba(139,115,85,0.07);
  color: var(--accent);
  font-weight: 600;
}
.premium-menu-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,115,85,0.08);
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.18s ease;
}
.premium-menu-link:hover .premium-menu-link-icon {
  background: rgba(139,115,85,0.14);
}

/* ── WhatsApp Concierge card ──────────────────────────────────────────────── */
.premium-menu-whatsapp {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(139,115,85,0.05);
  border: 1px solid rgba(139,115,85,0.15);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  transition: background 0.18s ease, border-color 0.18s ease;
}
.premium-menu-whatsapp:hover {
  background: rgba(139,115,85,0.09);
  border-color: rgba(139,115,85,0.28);
}
.premium-menu-whatsapp-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  flex-shrink: 0;
}
.premium-menu-whatsapp-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.premium-menu-whatsapp-sub {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.premium-menu-footer {
  border-top: 1px solid rgba(212,207,201,0.75);
  padding: 14px 20px;
  text-align: center;
  flex-shrink: 0;
}
.premium-menu-footer-city {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  font-family: var(--font-sans);
  margin-bottom: 3px;
}
.premium-menu-footer-copy {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  opacity: 0.38;
  font-family: var(--font-sans);
}

/* ── Reduced motion — drawer ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .premium-menu-close,
  .premium-menu-link,
  .premium-menu-whatsapp,
  .premium-menu-reset,
  .menu-pill { transition: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   BENEFITS MARQUEE
   ══════════════════════════════════════════════════════════════════════════ */

.benefits-marquee {
  overflow: hidden;
  background: #F5F2EE;
  border-bottom: 1px solid #D4CFC9;
  position: relative;
}
.benefits-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: benefitsScroll 38s linear infinite;
}
.benefits-marquee:hover .benefits-track {
  animation-play-state: paused;
}
@keyframes benefitsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 20px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 12px;
  color: #6B6560;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.benefit-icon {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.benefit-sep {
  color: rgba(139,115,85,0.22);
  font-size: 7px;
  flex-shrink: 0;
  padding: 0 2px;
  align-self: center;
  line-height: 1;
}
@media (prefers-reduced-motion: reduce) {
  .benefits-track { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   UNIVERSE SECTION
   ══════════════════════════════════════════════════════════════════════════ */

.universe-section {
  background: #EDEAE5;
  border-bottom: 1px solid #D4CFC9;
  padding: 32px 16px 36px;
}
.universe-header {
  max-width: 1152px;
  margin: 0 auto 22px;
  text-align: center;
}
.universe-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-sans);
  margin-bottom: 8px;
}
.universe-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}
.universe-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}
.universe-grid {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .universe-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}
.universe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 14px 18px;
  border-radius: 22px;
  border: 1.5px solid #D4CFC9;
  background: #F5F2EE;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  font-family: var(--font-sans);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              border-color 0.2s ease, background 0.2s ease;
}
.universe-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139,115,85,0.12);
  border-color: rgba(139,115,85,0.4);
}
.universe-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,115,85,0.08);
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.universe-card:hover .universe-card-icon {
  background: rgba(139,115,85,0.14);
}
.universe-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.universe-card-copy {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 380px) {
  .universe-card { padding: 16px 10px 14px; }
  .universe-card-icon { width: 34px; height: 34px; }
  .universe-card-title { font-size: 11px; }
  .universe-card-copy { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .universe-card { transition: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   EDITORIAL SECTIONS
   ══════════════════════════════════════════════════════════════════════════ */

.editorial-sections {
  background: #F5F2EE;
}
.editorial-block {
  padding: 44px 0 38px;
  border-bottom: 1px solid rgba(212,207,201,0.6);
}
.editorial-block:last-child { border-bottom: none; }
.editorial-block-header {
  max-width: 1152px;
  margin: 0 auto 20px;
  padding: 0 16px;
}
.editorial-block-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-sans);
  margin-bottom: 6px;
}
.editorial-block-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.editorial-block-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  max-width: 540px;
  line-height: 1.6;
}

/* Products row — mobile: swipe; desktop: grid estático premium */
.editorial-products-row {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.editorial-products-row::-webkit-scrollbar { display: none; }

/* Track — flex no mobile, grid no desktop */
.editorial-carousel-track {
  display: flex;
  gap: 12px;
  padding: 4px 16px 8px;
  width: max-content;
}

@media (min-width: 768px) {
  .editorial-products-row {
    overflow: visible;
    scroll-snap-type: none;
  }
  .editorial-carousel-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    gap: 14px;
    padding: 4px 16px 8px;
  }
  .editorial-product-card { width: auto; }
}

/* Editorial product card — vitrine de descoberta, sem cara de marketplace */
.editorial-product-card {
  flex-shrink: 0;
  width: 148px;
  border-radius: 18px;
  background: #FDFCFB;
  border: 1.5px solid #E5E1DB;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.editorial-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(139,115,85,0.14);
  border-color: rgba(139,115,85,0.32);
}
.editorial-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #E5E1DB;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editorial-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.editorial-card-img-placeholder {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(139,115,85,0.35);
  letter-spacing: 0.05em;
}
.editorial-product-card:hover .editorial-card-img img {
  transform: scale(1.06);
}
.editorial-card-body {
  padding: 10px 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.editorial-card-brand {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.editorial-card-name {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA */
.editorial-block-cta-wrap {
  max-width: 1152px;
  margin: 22px auto 0;
  padding: 0 16px;
}
.editorial-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  letter-spacing: 0.02em;
}
.editorial-block-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Catalog section header ───────────────────────────────────────────────── */
.catalog-section-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D4CFC9;
}
.catalog-section-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-sans);
  margin-bottom: 5px;
}
.catalog-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
}
.catalog-section-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  line-height: 1.55;
  transition: opacity 0.2s ease;
}

/* ── Reduced motion — editorial ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .universe-card,
  .editorial-product-card,
  .editorial-block-cta { transition: none !important; }
  .editorial-card-img img { transition: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   QUIZ INTRO ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════ */

.quiz-intro-logo {
  animation: quizLogoFade 0.8s ease 0s both;
}
@keyframes quizLogoFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 0.7; transform: translateY(0); }
}

.quiz-intro-title {
  animation: quizFadeUp 0.8s ease 0.12s both;
}
.quiz-intro-copy {
  animation: quizFadeUp 0.8s ease 0.26s both;
}
.quiz-intro-cta {
  animation: quizFadeUp 0.8s ease 0.4s both;
}
@keyframes quizFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.premium-pulse {
  animation: quizFadeUp 0.8s ease 0.4s both, premiumPulse 3.2s ease 2s infinite;
}
@keyframes premiumPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,115,85,0); }
  50%       { box-shadow: 0 0 0 8px rgba(139,115,85,0.15); }
}

@media (prefers-reduced-motion: reduce) {
  .quiz-intro-logo, .quiz-intro-title,
  .quiz-intro-copy, .quiz-intro-cta,
  .premium-pulse { animation: none !important; opacity: 1; }
  .quiz-intro-logo { opacity: 0.7; }
}
