/* ═══════════════════════════════════════════
   Relógios Floripa — Stylesheet
   ═══════════════════════════════════════════ */

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

:root {
  --bg:        #ffffff;
  --bg-soft:   #f8f7f4;
  --bg-muted:  #f0efe8;
  --ink:       #0d0d0d;
  --ink-2:     #3a3a3a;
  --muted:     #888888;
  --muted-2:   #c0bfba;
  --border:    #e5e3dc;
  --gold:      #b8962e;
  --gold-light:#d4b86a;
  --dark:      #111111;
  --dark-2:    #1a1a1a;
  --white:     #ffffff;
  --black:     #000000;
  --text-muted:#888888;
  --gold-grad: linear-gradient(135deg, #9a7b22 0%, #d4af60 50%, #9a7b22 100%);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--muted-2); }
::selection { background: var(--ink); color: var(--white); }

/* ── UTILITIES ── */
.section { padding: 96px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
#about .container { max-width: none; padding: 0 72px; }
.section-label {
  display: block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; line-height: 1.2; color: var(--ink);
}
.section-heading em {
  font-style: italic; color: var(--gold);
  background: none; -webkit-text-fill-color: unset;
}
.section-body {
  font-size: 13px; color: var(--muted); line-height: 1.9;
  max-width: 480px;
}
.rule { width: 40px; height: 1px; background: var(--border); margin: 20px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.3s ease;
}
.btn-gold  { background: var(--ink); color: var(--white); }
.btn-gold:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25); font-size: 10px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }


/* ════════════════════════════
   NAV — E-commerce 2 linhas
   ════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197,164,109,0.18);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,0.55); }

/* ── Linha 1: logo + busca + ícones ── */
.nav-main {
  display: flex; align-items: center; gap: 24px;
  padding: 0 48px; height: 80px;
}

/* Logo */
.nav-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; display: block; }

/* Campo de busca */
.nav-search {
  flex: 1; max-width: 560px; margin: 0 auto;
  position: relative; display: flex; align-items: center;
}
.nav-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: rgba(255,255,255,0.4); pointer-events: none;
}
.nav-search-input {
  width: 100%; height: 44px; padding: 0 108px 0 44px;
  border: 1.5px solid rgba(197,164,109,0.25); border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 13px;
  font-weight: 300; color: var(--white); background: rgba(255,255,255,0.06);
  outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.nav-search-input::placeholder { color: rgba(255,255,255,0.3); }
.nav-search-input:focus {
  border-color: #c5a46d; background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(197,164,109,0.12);
}
.nav-search-btn {
  position: absolute; right: 0; top: 0; bottom: 0; padding: 0 18px;
  background: #c5a46d; color: var(--black); border: none;
  border-radius: 0 4px 4px 0;
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s; white-space: nowrap;
}
.nav-search-btn:hover { background: #b8962e; }

/* Ícones direita */
.nav-icons { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav-icon-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 14px; border: none; background: none; cursor: pointer;
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif; font-size: 9px;
  font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 4px; transition: background 0.2s, color 0.2s;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.nav-icon-btn svg { flex-shrink: 0; }
.nav-icon-btn.wpp-btn:hover { background: rgba(255,255,255,0.07); color: var(--white); }

/* Hamburguer */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px 10px; flex-shrink: 0; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.85); border-radius: 1px; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Linha 2: menu de categorias ── */
.nav-cats {
  border-top: 1px solid rgba(197,164,109,0.15);
  background: rgba(0,0,0,0.0);
}
.nav-cat-list {
  display: flex; align-items: center;
  list-style: none; padding: 0 40px; margin: 0;
  white-space: nowrap;
}
.nav-cat-list li a,
.nav-cat-list li button {
  display: block; padding: 11px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 400; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65); text-decoration: none;
  background: none; border: none; cursor: pointer;
  position: relative; transition: color 0.25s, letter-spacing 0.3s; white-space: nowrap;
  overflow: hidden;
}
.nav-cat-list li a::after,
.nav-cat-list li button::after {
  content: ''; position: absolute;
  bottom: 5px; left: 13px; right: 13px;
  height: 1px; background: #c5a46d;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-cat-list li a:hover,
.nav-cat-list li button:hover { color: #c5a46d; letter-spacing: 1.2px; }
.nav-cat-list li a:hover::after,
.nav-cat-list li button:hover::after { transform: scaleX(1); }

/* ── Dropdown nav ── */
.nav-cat-list li.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: #111111;
  border: 1px solid rgba(197,164,109,0.2);
  border-top: 2px solid #c5a46d;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.6);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 160px;
  z-index: 300;
}
.nav-cat-list li.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, letter-spacing 0.25s;
}
.nav-dropdown-menu li a:hover { color: #c5a46d; background: rgba(197,164,109,0.07); letter-spacing: 0.6px; }
.nav-dropdown-menu li a::after { display: none !important; }
.nav-dropdown-menu li a.active-sub { color: #c5a46d; }

/* Menu de marcas — 2 colunas */
.nav-brands-menu {
  columns: 2;
  column-gap: 0;
  min-width: 260px;
}

/* ── Drawer mobile ── */
.nav-drawer {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: #0d0d0d; z-index: 999;
  overflow-y: auto; padding: 20px 24px 48px;
  border-top: 1px solid rgba(197,164,109,0.15);
}
.nav-drawer.open { display: block; }
.nav-drawer-search { position: relative; margin-bottom: 20px; }
.nav-drawer-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: rgba(255,255,255,0.35); pointer-events: none;
}
.nav-drawer-search input {
  width: 100%; height: 44px; padding: 0 16px 0 44px;
  border: 1.5px solid rgba(197,164,109,0.2); border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 13px;
  font-weight: 300; color: var(--white); background: rgba(255,255,255,0.06); outline: none;
}
.nav-drawer-list { list-style: none; margin-bottom: 24px; }
.nav-drawer-list li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-drawer-list li a,
.nav-drawer-list li button {
  display: block; padding: 14px 4px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.65); text-decoration: none;
  background: none; border: none; width: 100%; text-align: left; cursor: pointer;
  transition: color 0.2s, letter-spacing 0.25s;
}
.nav-drawer-list li a:hover, .nav-drawer-list li button:hover { color: #c5a46d; letter-spacing: 0.8px; }
.nav-drawer-sub { border-bottom: none !important; }
.nav-drawer-sub a {
  padding: 9px 4px 9px 20px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.35) !important;
}
.nav-drawer-sub a:hover { color: #c5a46d !important; }
.nav-drawer-section-label {
  padding: 10px 4px 4px;
  font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: #c5a46d;
  border-bottom: none !important;
}
.nav-drawer-wpp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; background: #25D366; color: var(--white); border-radius: 4px;
  text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 500; transition: background 0.25s;
}
.nav-drawer-wpp:hover { background: #1ea854; }


/* ════════════════════════════
   HERO — overlap preciso
   Técnica: grid 44/56 + translateX na imagem
   ════════════════════════════ */
#hero {
  background: #0a0a0a;
  overflow: hidden;
}

/* Grid assimétrico: texto 44% · imagem 56% (dominante) */
.hero-content {
  display: grid;
  grid-template-columns: 44fr 56fr;
  min-height: 660px;
  overflow: visible; /* permite o translateX sangrar para a esquerda */
}

/* ── Coluna texto: z-index superior, sem bg próprio ──
   O branco do #hero aparece por baixo; a imagem só "entra" na
   faixa vazia entre o texto e a borda da coluna.               */
.hero-left {
  padding: 160px 60px 80px 80px;
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  will-change: transform;
}

/* ── Coluna imagem: full-bleed editorial ── */
.hero-right {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 660px;
  transform: translateX(-80px);
  width: calc(100% + 80px);
}

/* Overlay escuro sutil no topo/base para profundidade */
.hero-right::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.04) 0%, transparent 20%, transparent 80%, rgba(10,10,10,0.03) 100%);
  pointer-events: none;
}

/* Fade dark→transparente na borda esquerda — blend suave com o texto */
.hero-right::after {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 200px; z-index: 3;
  background: linear-gradient(to right, #0a0a0a 0%, rgba(10,10,10,0.4) 35%, transparent 100%);
  pointer-events: none;
}

/* ── Foto editorial full-bleed ── */
.hero-photo {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

/* ── Conteúdo do texto ── */
.hero-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: rgba(255,255,255,0.2);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 64px); font-weight: 300;
  line-height: 1.08; color: var(--white); margin-bottom: 28px;
  max-width: 420px;
}
.hero-title em {
  font-style: italic; color: var(--gold);
  background: none; -webkit-text-fill-color: unset;
}

.hero-desc {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.9;
  max-width: 340px; margin-bottom: 28px;
}

.hero-proof {
  display: flex; align-items: center; gap: 12px; margin-bottom: 40px;
}
.hero-stars { display: flex; gap: 3px; }
.hero-stars span { color: var(--gold); font-size: 14px; }
.hero-proof-text { font-size: 11px; color: rgba(255,255,255,0.4); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Botões no contexto do hero escuro */
#hero .btn-gold { background: #c5a46d; color: #000; }
#hero .btn-gold:hover { background: #b8962e; transform: translateY(-1px); }
#hero .btn-outline { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.35); }
#hero .btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }


/* ════════════════════════════
   FEATURES STRIP
   ════════════════════════════ */
#features-strip {
  background: #111111;
  border-top: 1px solid rgba(197,164,109,0.12);
  border-bottom: 1px solid rgba(197,164,109,0.12);
  padding: 0;
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item {
  padding: 32px 36px; display: flex; align-items: flex-start; gap: 18px;
  border-right: 1px solid rgba(255,255,255,0.06); transition: background 0.3s;
}
.feature-icon { margin-top: 2px; }
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.03); }
.feature-icon {
  width: 40px; height: 40px; border: 1px solid rgba(197,164,109,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #c5a46d;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-title { font-size: 11px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.feature-desc  { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.5; }


/* ════════════════════════════
   PRODUTOS
   ════════════════════════════ */
#products { background: var(--bg); padding: 80px 0; }
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 48px; margin-bottom: 0;
}
.products-header-left {}
.products-header .section-heading { margin: 0; }

/* Category tiles */
.category-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1px; background: var(--border);
  margin: 40px 0 2px;
}
.cat-tab {
  aspect-ratio: 3/2;
  padding: 16px;
  background: var(--bg-soft);
  border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; gap: 5px;
  transition: background 0.25s, color 0.25s;
}
.cat-tab:hover:not(.active) { background: var(--bg-muted); }
.cat-tab.active { background: var(--ink); }
.cat-tab-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.5vw, 16px); font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-2);
}
.cat-tab-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 1px; color: var(--muted);
}
.cat-tab.active .cat-tab-name  { color: var(--white); }
.cat-tab.active .cat-tab-count { color: rgba(255,255,255,0.45); }

/* Product grid — 4 colunas */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}

/* Card */
.product-card { position: relative; background: var(--bg); overflow: hidden; cursor: pointer; }
.product-card-link,
.product-card-link:link,
.product-card-link:visited,
.product-card-link:hover,
.product-card-link:focus,
.product-card-link:active {
  display: contents; color: inherit; text-decoration: none; outline: none;
}
.product-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: visible;
}
.product-img-placeholder {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--bg-muted); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 2px; color: var(--muted);
  text-align: center; padding: 16px;
}
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--white);
  font-size: 8px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; padding: 3px 9px;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.22);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px;
  opacity: 0; transition: opacity 0.35s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay .btn-gold {
  background: var(--white); color: var(--ink);
  font-size: 9px; padding: 10px 22px; letter-spacing: 3px;
  transform: translateY(8px); opacity: 0;
  transition: transform 0.3s 0.05s, opacity 0.3s 0.05s;
}
.product-card:hover .product-overlay .btn-gold { transform: translateY(0); opacity: 1; }
.product-info {
  padding: 18px 20px 20px; border-top: 1px solid var(--border); background: var(--bg);
}
.product-brand { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.product-water-status {
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 4px 0 12px;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 14px; font-weight: 400; color: var(--ink); }
.product-price-old { font-size: 11px; color: #0d0d0d; text-decoration: line-through; margin-right: 6px; }
.product-btn {
  width: 28px; height: 28px; border: 1px solid var(--border);
  background: transparent; color: var(--ink-2);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.product-btn:hover, .product-card:hover .product-btn {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.product-btn svg { width: 12px; height: 12px; }
.products-footer { text-align: center; padding: 48px 0 0; }


/* ════════════════════════════
   BANNER EDITORIAL
   ════════════════════════════ */
.editorial-banner {
  background: var(--dark);
  min-height: 460px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.editorial-banner::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.015) 100%);
  pointer-events: none;
}
.editorial-content {
  position: relative; z-index: 1;
  padding: 80px 80px; max-width: 1280px; margin: 0 auto; width: 100%;
}
.editorial-tag {
  display: block; font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 28px;
}
.editorial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 100px); font-weight: 300;
  line-height: 1.0; color: var(--white); margin-bottom: 52px;
  max-width: 800px;
}
.editorial-cta {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; color: rgba(255,255,255,0.85);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 500; padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s, gap 0.3s, color 0.3s;
}
.editorial-cta:hover { border-bottom-color: var(--white); gap: 22px; color: var(--white); }


/* ════════════════════════════
   SOBRE
   ════════════════════════════ */
#about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; }
.about-img-box {
  width: 100%; aspect-ratio: 4/5; background: var(--bg-muted);
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-img-box::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.02));
}
.about-img-box-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300; color: rgba(0,0,0,0.06); letter-spacing: 4px;
}
.about-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 180px; height: 180px; border: 1px solid var(--border);
}
.about-accent::before {
  content: ''; position: absolute; inset: 18px; border: 1px solid rgba(0,0,0,0.04);
}
.about-badge {
  position: absolute; top: 28px; right: -18px;
  background: var(--ink); color: var(--white); padding: 18px; text-align: center; width: 96px;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; line-height: 1; display: block;
}
.about-badge-label { font-size: 8px; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; display: block; }
.about-content .section-body { margin-bottom: 36px; }
.about-list { list-style: none; }
.about-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--ink-2);
}
.about-list li::before { content: '—'; color: var(--muted-2); flex-shrink: 0; }


/* ════════════════════════════
   DEPOIMENTOS
   ════════════════════════════ */
#testimonials { background: var(--bg); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-label { display: inline-block; }
.testimonials-header .section-heading { margin: 0 auto; }
.testimonials-header .rule { margin: 24px auto; }
.testimonials-header .section-body { margin: 0 auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; background: var(--border);
}
.testimonial-card {
  background: var(--white); padding: 32px; position: relative; transition: background 0.3s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit; cursor: pointer;
}
.testimonial-card:hover { background: var(--bg-soft); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 20px; right: 28px;
  font-family: 'Cormorant Garamond', serif; font-size: 72px;
  color: rgba(0,0,0,0.04); line-height: 1;
}
.stars { display: flex; gap: 2px; margin-bottom: 18px; }
.stars span { color: var(--ink); font-size: 10px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 300; font-style: italic;
  line-height: 1.8; color: var(--ink-2); margin-bottom: 28px;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-muted); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--ink);
}
.author-name  { font-size: 11px; font-weight: 500; color: var(--ink); }
.author-city  { font-size: 10px; color: var(--muted); margin-top: 2px; }


/* ════════════════════════════
   GARANTIA
   ════════════════════════════ */
#garantia { background: var(--bg-soft); }
.garantia-content { max-width: 720px; }
.garantia-text {
  font-size: 14px; color: var(--ink-2); line-height: 1.9;
  margin-bottom: 20px;
}
.garantia-subtitle {
  font-size: 14px; color: var(--ink); line-height: 1.9;
  margin-bottom: 10px; margin-top: 4px;
}
.garantia-list {
  list-style: none; margin-bottom: 24px; padding: 0;
}
.garantia-list li {
  font-size: 14px; color: var(--ink-2); line-height: 1.8;
  padding: 8px 0 8px 20px; border-bottom: 1px solid var(--border);
  position: relative;
}
.garantia-list li::before {
  content: '•'; position: absolute; left: 0;
  color: var(--gold); font-size: 16px; line-height: 1.8;
}
.garantia-list--dash li::before { content: '—'; color: var(--muted-2); font-size: 13px; }
.garantia-block-title {
  font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink); margin: 32px 0 14px;
  padding-top: 8px; border-top: 1px solid var(--border);
}


/* ════════════════════════════
   CTA FINAL
   ════════════════════════════ */
#cta-final { position: relative; overflow: hidden; text-align: center; background: #0a0a0a !important; }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,0.02), transparent 70%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px); font-weight: 300;
  line-height: 1.15; margin-bottom: 24px; color: var(--white);
}
.cta-title em { font-style: italic; color: var(--gold-light); background: none; -webkit-text-fill-color: unset; }
.cta-sub { font-size: 13px; color: rgba(255,255,255,0.45); max-width: 440px; margin: 0 auto 14px; line-height: 1.9; }
.cta-urgency { font-size: 9px; color: rgba(255,255,255,0.25); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-gold  { background: var(--white); color: var(--dark); }
.cta-actions .btn-gold:hover { background: var(--bg-soft); }
.cta-actions .btn-outline { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }
.cta-actions .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }


/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
footer { background: #0a0a0a !important; background-image: none !important; padding: 64px 48px 32px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 56px; width: auto; display: block;
}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.8; max-width: 220px; margin-bottom: 24px; }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.45); transition: all 0.3s;
}
.social-link:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.social-link svg { width: 13px; height: 13px; }
.footer-col h4 { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li span { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.5px;
}
.footer-cnpj {
  color: rgba(255,255,255,0.6); font-size: 12px;
}
.footer-cards {
  display: flex; align-items: center; gap: 6px;
}
.footer-cards svg {
  border-radius: 4px; opacity: 0.7;
}


/* ════════════════════════════
   WHATSAPP FLOAT
   ════════════════════════════ */
.wpp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 50px; height: 50px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.28); text-decoration: none;
  transition: transform 0.3s;
}
.wpp-float:hover { transform: scale(1.1); }
.wpp-float svg { width: 24px; height: 24px; fill: white; }


/* ════════════════════════════
   AOS — Animate on Scroll
   ════════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }


/* ════════════════════════════
   BRAND FILTER
   ════════════════════════════ */
.brand-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 48px;
  background: #faf8f5;
  border-bottom: 1px solid var(--border);
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.brand-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,164,109,0.06);
}
.brand-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.brand-pill.active:hover { background: var(--ink-2); border-color: var(--ink-2); color: var(--white); }

@media (max-width: 900px) {
  .brand-filter { padding: 14px 20px; }
}

/* ════════════════════════════
   CAT-HERO PARALLAX WRAPPER
   ════════════════════════════ */
.cat-hero-inner { will-change: transform; }

/* ════════════════════════════
   PREMIUM GRID
   ════════════════════════════ */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 48px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ════════════════════════════
   PCARD — Premium Product Card
   ════════════════════════════ */
.pcard {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
  cursor: pointer;
}
.pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.13);
}
.pcard-link {
  display: block; text-decoration: none; color: inherit;
}

/* ── Visual (upper) ── */
.pcard-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: transparent;
}
/* Sem fundo — apenas a foto */
.pcard-visual::before { display: none; }

.pcard-bg-left,
.pcard-bg-right { display: none; }
.pcard-bg-right::after { display: none; }

/* Product image floating over both panels */
.pcard-img-wrap {
  position: absolute; inset: 0; z-index: 2;
}
.pcard-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none; user-select: none; display: block;
}
.pcard:hover .pcard-img-wrap img {
  transform: scale(1.07) translateY(-5px);
}

/* Watch SVG placeholder */
.pcard-watch-svg {
  width: 108px; height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
  transition: transform 0.5s ease;
}
.pcard:hover .pcard-watch-svg { transform: scale(1.07) translateY(-5px); }

/* Badge — pill gold, top-right */
.pcard-badge {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  background: #c9a96e; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 13px; border-radius: 20px;
  box-shadow: 0 2px 10px rgba(201,169,110,0.45);
}

/* Caption — name + price over image, bottom-left */
.pcard-caption { display: none; }

/* ── Info (lower) ── */
.pcard-info {
  background: #ffffff;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.pcard-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: #aaa; margin-bottom: 6px;
}
.pcard-name,
.promo-card-name,
.product-name {
  font-family: 'Aptos', 'Inter', sans-serif !important;
  font-size: 18px; font-weight: 400 !important; color: #111 !important;
  letter-spacing: 0; line-height: 1.25; margin-bottom: 12px;
}
.pcard-prices { display: flex; align-items: center; gap: 10px; }
.pcard-old {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; color: #c0bfba; text-decoration: line-through;
}
.pcard-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 600; color: #c9a96e;
}
.pcard-colors {
  display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; padding-top: 8px;
  border-top: 1px solid rgba(197,164,109,0.1);
}
.pcard-color-dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12); display: inline-block; flex-shrink: 0;
}
.pcard-color-dot.unavail { opacity: 0.25; }

/* ════════════════════════════
   RESPONSIVO
   ════════════════════════════ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .premium-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .premium-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 20px; gap: 18px; }
}

@media (max-width: 900px) {
  .nav-main { padding: 0 20px; gap: 12px; height: 72px; }
  .nav-logo img { height: 44px; }
  .nav-search { display: none; }
  .nav-icon-btn span { display: none; }
  .nav-icon-btn { padding: 8px 10px; }
  .nav-cats { display: none; }
  .hamburger { display: flex; order: -1; }
  .nav-drawer-search { display: none; }
  .nav-drawer { top: 72px; height: calc(100dvh - 72px); bottom: auto; }
  .nav-drawer-list > .nav-drawer-sub { display: none; }

  /* Hero — empilha verticalmente, foto vem abaixo do texto */
  .hero-content { grid-template-columns: 1fr; min-height: auto; overflow: visible; }
  .hero-right { transform: none; width: 100%; min-height: 300px; }
  .hero-right::after { width: 80px; }
  .hero-left { padding: 112px 28px 48px; }
  .hero-title { max-width: 100%; }
  .hero-desc { max-width: 100%; }
  .hero-actions { flex-wrap: wrap; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }

  .products-header { flex-direction: column; align-items: flex-start; gap: 8px; padding: 0 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tabs { grid-template-columns: repeat(3, 1fr); }

  .editorial-content { padding: 60px 32px; }
  .editorial-title { font-size: clamp(40px, 8vw, 64px); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 48px 24px 28px; }

  #about .about-experience-card {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    transform: scale(0.67);
    transform-origin: top right;
  }
}

@media (max-width: 480px) {
  .premium-grid { grid-template-columns: 1fr; }
  .pcard-visual { height: 260px; }
}

@media (max-width: 600px) {
  .nav-main { height: 64px; }
  .nav-logo img { height: 38px; }
  .nav-drawer { top: 64px; height: calc(100dvh - 64px); bottom: auto; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .category-tabs { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .editorial-content { padding: 48px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
