/* ===========================================================
   HARKONIM STUDIO — design tokens
   Paleta monocromática: preto e branco, com verde do WhatsApp
   reservado só pra ações de contato/status positivo.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  --bg: #1c1c1c;
  --surface: #242424;
  --surface-raised: #2c2c2c;
  --line: #383838;

  --text: #f5f5f5;
  --text-muted: #969696;

  --amber: #e8e8e8;
  --amber-bright: #ffffff;
  --verdigris: #25d366;
  --verdigris-bright: #3ee079;

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 3px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

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

:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 2px;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  background: transparent;
}

body:not(.tem-hero) .site-header {
  position: sticky;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--amber-bright); }

/* ---------- "Ver Todos Produtos" dropdown ---------- */

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  white-space: nowrap;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--amber-bright); }

.nav-dropdown-trigger .caret { font-size: 0.7rem; transition: transform 0.15s ease; }
.nav-dropdown.open .nav-dropdown-trigger .caret { transform: rotate(180deg); }

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  min-width: 620px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.nav-dropdown.open .nav-dropdown-panel { display: grid; }

.dropdown-group h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.dropdown-group a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: none;
  padding: 5px 0;
}

.dropdown-group a:hover { color: var(--amber-bright); }

@media (max-width: 760px) {
  .nav-dropdown-panel { position: static; min-width: 0; box-shadow: none; margin-top: 12px; display: none !important; }
  .nav-dropdown.open .nav-dropdown-panel { display: grid !important; }
}

.nav-cta {
  border: 1px solid var(--verdigris);
  color: var(--verdigris-bright) !important;
  padding: 8px 14px;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--verdigris);
  color: var(--bg) !important;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  background: linear-gradient(120deg, #0a0a0a 0%, #161616 55%, #1e1e1e 100%);
  overflow: hidden;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 5vw;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.hero-title em {
  font-style: normal;
  color: var(--amber-bright);
}

.hero-sub {
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 26px;
  font-size: 0.98rem;
}

.hero-btn {
  display: inline-flex;
  width: fit-content;
  padding: 13px 26px;
  background: var(--amber);
  color: #0a0a0a;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}

.hero-btn:hover { background: var(--amber-bright); }

.hero-media {
  position: relative;
  background: linear-gradient(155deg, #1c1c1c 0%, #0e0e0e 100%);
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Category quick-nav (after hero) ---------- */

.cat-nav {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 22px 24px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.cat-nav a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
}

.cat-nav a:hover { color: var(--amber-bright); border-color: var(--amber); }

/* ---------- Product sections (rows grouped by category) ---------- */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 8px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}

.section-head .section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.section-head a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-head a:hover { color: var(--amber-bright); }

/* ---------- Promotions strip (full-bleed horizontal scroll) ---------- */

.promo-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 50px;
  margin-top: 50px;
}

.promo-strip .section-head { max-width: 1200px; margin: 0 auto 20px; padding: 0 24px; }

.promo-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 24px 12px;
  scroll-snap-type: x mandatory;
}

.promo-scroll .card { min-width: 230px; scroll-snap-align: start; }

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-right: 8px;
}

/* ---------- Category filter chips ---------- */

.filters {
  max-width: 1200px;
  margin: 32px auto 8px;
  padding: 0 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
  transition: all 0.15s ease;
}

.chip:hover { border-color: var(--amber); color: var(--text); }

.chip.active {
  background: var(--amber);
  border-color: var(--amber);
  color: #0a0a0a;
}

/* ---------- Product grid ---------- */

.grid-wrap {
  max-width: 1200px;
  margin: 24px auto 80px;
  padding: 0 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--amber);
}

.card-media {
  aspect-ratio: 3 / 4;
  background: linear-gradient(155deg, #1c1c1c 0%, #0e0e0e 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

.card-media .fallback-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 16px;
  color: var(--text-muted);
}

.tag-mold {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  background: rgba(22,20,15,0.82);
  border: 1px solid var(--line);
  color: var(--amber-bright);
  padding: 4px 8px;
  border-radius: 2px;
}

.card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.card-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.card-price {
  margin-top: auto;
  padding-top: 8px;
  font-size: 1rem;
  color: var(--amber-bright);
}

.card-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* ---------- Product detail page ---------- */

.product-wrap {
  max-width: 1200px;
  margin: 40px auto 100px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb a:hover { color: var(--amber-bright); }

.gallery-main {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #1c1c1c 0%, #0e0e0e 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
}

.gallery-thumbs img {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.gallery-thumbs img.active { border-color: var(--amber); }

.product-info h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 6px;
}

.product-cat {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-price {
  font-size: 1.6rem;
  color: var(--amber-bright);
  margin: 18px 0 4px;
}

.product-installment {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--verdigris);
  color: #0f1512;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}

.btn-whatsapp:hover { background: var(--verdigris-bright); }

.status-banner {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--line);
}

.status-banner.sob-encomenda {
  background: #f4c430;
  border-color: #f4c430;
  color: #16140a;
}

.status-banner.pronta-entrega {
  background: rgba(37, 211, 102, 0.1);
  border-color: var(--verdigris);
  color: var(--verdigris-bright);
}

.info-accordion {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.info-accordion details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.info-accordion summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}

.info-accordion .accordion-body {
  padding-top: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.spec-table {
  margin-top: 24px;
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row span:first-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.product-description {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.care-list, .info-list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.care-list li, .info-list li { margin-bottom: 5px; }

/* ---------- Shipping calculator ---------- */

.shipping-calc {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.shipping-calc label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.shipping-row {
  display: flex;
  gap: 8px;
}

.shipping-row input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.shipping-row button {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber-bright);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
}

.shipping-row button:hover { background: var(--amber); color: #0a0a0a; }

.shipping-result {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Social share ---------- */

.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.share-row span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.share-row a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.15s ease;
}

.share-row a:hover {
  border-color: var(--amber);
  color: var(--amber-bright);
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Rodapé completo (redes sociais + links + copyright) ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 24px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.footer-social h4, .footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.social-icons { display: flex; gap: 10px; }

.social-icons a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  transition: all 0.15s ease;
}

.social-icons a:hover { border-color: var(--amber-bright); color: var(--amber-bright); }

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--amber-bright); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .product-wrap { grid-template-columns: 1fr; gap: 28px; }
  .nav-wrap { flex-wrap: nowrap; height: 64px; padding: 0 16px; }
  .mobile-menu-btn { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 20px;
    overflow-y: auto;
    z-index: 50;
  }

  .nav-links.mobile-aberto { display: flex; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; }
  .nav-dropdown-panel {
    position: static !important;
    min-width: 0;
    box-shadow: none;
    margin-top: 12px;
    width: 100%;
    grid-template-columns: 1fr;
  }
}

/* ---------- Faixa "Em Destaque" full-bleed (3 blocos grandes) ---------- */

.featured-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.featured-tile {
  display: block;
}

.tile-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(155deg, #1c1c1c 0%, #0e0e0e 100%);
}

.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.featured-tile:hover .tile-media img { transform: scale(1.04); }

.tile-info {
  padding: 14px 4px 0;
  text-align: center;
}

.tile-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.tile-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  display: block;
}

.tile-price {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ---------- Badge NSFW ---------- */

.badge-nsfw {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  background: rgba(0,0,0,0.85);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  padding: 3px 7px;
  border-radius: 2px;
}

/* ---------- Página "Ver Todos Produtos" (sidebar + grid) ---------- */

.produtos-header {
  max-width: 1300px;
  margin: 26px auto 0;
  padding: 0 24px;
}

.produtos-header h1 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin: 6px 0 0;
}

.produtos-wrap {
  max-width: 1300px;
  margin: 20px auto 90px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 36px;
}

.produtos-sidebar { border-right: 1px solid var(--line); padding-right: 24px; }

.sidebar-section { margin-bottom: 28px; }

.sidebar-section h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.sidebar-cat { margin-bottom: 4px; }

.sidebar-cat > a {
  display: block;
  font-size: 0.88rem;
  padding: 6px 0;
  color: var(--text);
}

.sidebar-cat > a:hover, .sidebar-cat > a.active { color: var(--amber-bright); }

.sidebar-sub-list { padding-left: 14px; }

.sidebar-sub-list a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
}

.sidebar-sub-list a:hover, .sidebar-sub-list a.active { color: var(--amber-bright); }

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 8px;
  cursor: pointer;
}

.price-range { display: flex; align-items: center; gap: 8px; }

.price-range input {
  width: 70px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 8px;
  color: var(--text);
  font-size: 0.82rem;
}

.produtos-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.produtos-toolbar span { font-size: 0.82rem; color: var(--text-muted); }

.sort-select {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.82rem;
}

@media (max-width: 800px) {
  .produtos-wrap { grid-template-columns: 1fr; }
  .produtos-sidebar { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 20px; }
}

/* ---------- Página Fila de Produção ---------- */

.fila-hero {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #0a0a0a 0%, #161616 100%);
  border-bottom: 1px solid var(--line);
}

.fila-hero h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.fila-wrap { max-width: 800px; margin: 40px auto 90px; padding: 0 24px; }

.fila-stage { margin-bottom: 34px; }

.fila-stage h3 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.fila-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.fila-item .codigo {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ---------- Página estática simples (Quem Somos, Fale com a gente, etc.) ---------- */

.static-page { max-width: 760px; margin: 50px auto 100px; padding: 0 24px; }
.static-page h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 18px; }
.static-page p { color: var(--text-muted); margin-bottom: 16px; }

/* ---------- Banner principal — só a imagem, com fade de entrada ---------- */

.hero-full {
  width: 100%;
  height: 100vh;
  max-height: 900px;
  min-height: 520px;
  overflow: hidden;
  opacity: 0;
  animation: heroFadeIn 1.1s ease forwards;
}

.hero-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Dropdown "Ver Todos Produtos" — abre no hover, suave ---------- */

.nav-dropdown-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  display: grid !important;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------- Troca de imagem no hover (produtos com 2ª foto) ---------- */

.card-media, .tile-media { position: relative; }

.img-base, .img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.img-hover { opacity: 0; }

.card:hover .img-hover,
.featured-tile:hover .img-hover { opacity: 1; }

/* ---------- Fade-in ao rolar a página ---------- */

.fade-in-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-item.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Botão flutuante de WhatsApp (canto inferior direito) ---------- */

.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--verdigris);
  color: #0f1512;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: background 0.15s ease, transform 0.15s ease;
}

.float-whatsapp:hover {
  background: var(--verdigris-bright);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .float-whatsapp span { display: none; }
  .float-whatsapp { padding: 14px; }
}

/* ---------- Blocos de destaque (usado em Quem Somos) ---------- */

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.about-features .feature h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.about-features .feature p {
  font-size: 0.88rem;
  margin: 0;
}

/* ---------- Espaçamento entre banner e faixas de produtos ---------- */

.strip-block {
  padding-top: 50px;
}

.strip-title {
  max-width: 1400px;
  margin: 0 auto 20px;
  padding: 0 24px;
  text-align: center;
}

.strip-title .section-head { justify-content: center; }
.strip-title .section-head > div { text-align: center; }

/* ---------- Correção definitiva: no mobile, o painel do dropdown
   precisa realmente sair do layout quando fechado (display: none),
   não só ficar invisível — senão ele quebra o menu ocupando espaço
   escondido. Usa mais uma classe no seletor pra ganhar de propósito
   da regra "sempre grid" declarada mais acima, sem depender de
   :not() complexo (que navegador mobile antigo pode não suportar). ---------- */
@media (max-width: 760px) {
  .nav-dropdown .nav-dropdown-panel {
    display: none !important;
  }
  .nav-dropdown.open .nav-dropdown-panel {
    display: grid !important;
  }
}

/* ---------- Banner principal — altura menor no celular ----------
   Fica no final do arquivo de propósito: a definição original do
   .hero-full (altura 100vh) vem mais acima, e como as duas regras
   têm a mesma especificidade, quem vem por último no arquivo ganha.
   Sem isso, no celular a tela fica muito mais alta que larga, e a
   imagem (larga) acaba cortando quase tudo pra caber. */
/* ---------- Grid de produtos e faixas — mínimo 3 colunas mesmo no celular ---------- */
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .featured-strip { gap: 2px; }
  .card-body { padding: 8px 6px 12px; gap: 2px; }
  .card-name { font-size: 0.8rem; }
  .card-price { font-size: 0.78rem; }
  .card-cat, .card-status { font-size: 0.6rem; }
  .tile-info { padding: 8px 4px 0; }
  .tile-name { font-size: 0.78rem; }
  .tile-price, .tile-cat { font-size: 0.66rem; }
}

/* ---------- Banner principal no celular — mostra a imagem inteira, sem cortar ---------- */
@media (max-width: 760px) {
  .hero-full {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .hero-full img {
    height: auto;
    object-fit: contain;
  }
}
