/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0c0b09;
  --dark:       #131210;
  --dark-2:     #1c1a17;
  --dark-3:     #252320;
  --gold:       #c9a96e;
  --gold-lt:    #e2c99a;
  --white:      #f7f5f2;
  --white-dim:  #b8b4ae;
  --line:       rgba(255,255,255,.08);
  --radius:     4px;
  --radius-lg:  12px;
  --ease:       cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== TYPE ========== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  font-weight: 600;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.15rem; font-weight: 500; }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.center { text-align: center; }

/* ========== BUTTONS ========== */
.btn-dark {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.btn-dark:hover { background: var(--gold); color: var(--black); transform: translateY(-1px); }
.btn-dark:active { transform: translateY(0); }
.btn-dark.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.3); color: var(--white); }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(12,11,9,.85);
  backdrop-filter: blur(20px);
  border-color: var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.05);
}

.nav { display: flex; gap: 36px; }
.nav a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-dim);
  transition: color .2s;
}
.nav a:hover { color: var(--white); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .82rem;
  letter-spacing: .06em;
  transition: border-color .2s, background .2s;
}
.cart-btn:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }

.cart-count {
  background: var(--gold);
  color: var(--black);
  font-size: .7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.55) saturate(.8);
  transform: scale(1.04);
  transition: transform 10s ease;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12,11,9,.92) 0%, rgba(12,11,9,.55) 55%, rgba(12,11,9,.15) 100%),
    linear-gradient(to top, rgba(12,11,9,.7) 0%, transparent 35%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px;
  max-width: 680px;
}

.hero-left h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 400px;
  margin-bottom: 48px;
  line-height: 1.75;
}

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

@media (max-width: 960px) {
  .hero-img-overlay {
    background:
      linear-gradient(to bottom, var(--dark-2) 0%, transparent 30%),
      linear-gradient(to top,    rgba(12,11,9,.4) 0%, transparent 40%);
  }
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  border-top: 1px solid var(--line);
  background: rgba(12,11,9,.55);
  backdrop-filter: blur(12px);
}

.stat {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}
.stat p {
  font-size: .75rem;
  color: var(--white-dim);
  letter-spacing: .04em;
}
.stat-divider { width: 1px; background: var(--line); }

/* ========== MARQUEE ========== */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== MENU ========== */
.menu {
  padding: 120px 0;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558961363-fa8fdf82db35?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(.18) saturate(.6);
  z-index: 0;
}

.menu .container {
  position: relative;
  z-index: 1;
}

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}
.menu-header h2 { margin-top: 0; }

.filters {
  display: flex;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--white-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.filter-btn:hover { color: var(--white); }
.filter-btn.active {
  background: var(--white);
  color: var(--black);
}

/* ── GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── CARD ── */
.product-card {
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover {
  border-color: rgba(201,169,110,.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* ── IMAGEM ── */
.product-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--dark-3);
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
  filter: brightness(.9) saturate(.9);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.product-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
}

.product-img-wrap img.error { display: none; }
.product-img-wrap img.error + .product-img-fallback { display: block; }

/* overlay gradiente no bottom da imagem */
.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--dark-2), transparent);
  pointer-events: none;
}

/* badge sobre a imagem */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 1;
}

/* ── INFO ── */
.product-info {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-subname {
  font-size: .8rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.product-desc {
  font-size: .83rem;
  color: var(--white-dim);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 22px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-pricing {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1;
}

.product-price-bundle {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold-lt);
  opacity: .7;
}

.add-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.add-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.06);
}
.add-btn:active { transform: scale(.97); }

/* ========== SOBRE ========== */
.sobre {
  padding: 120px 0;
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.sobre-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.sobre-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,11,9,.82);
}

.sobre .container {
  position: relative;
  z-index: 1;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual {
  display: flex;
  align-items: stretch;
}

.b2 {
  width: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #7a5a28 0%, #c9a96e 60%, #e2c99a 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.sobre-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.sobre-tag {
  position: absolute;
  bottom: 48px;
  left: -16px;
  background: var(--gold);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
}

.sobre-text h2 { margin-bottom: 24px; }
.sobre-text p { color: var(--white-dim); font-size: .95rem; margin-bottom: 16px; }
.sobre-text .btn-dark { margin-top: 24px; }

/* ========== DEPOIMENTOS ========== */
.depoimentos {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--line);
}

.depoimentos .eyebrow.center { display: block; text-align: center; }
.depoimentos h2 { text-align: center; margin-bottom: 64px; }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.dep-card {
  background: var(--dark);
  padding: 40px 32px;
  transition: background .2s;
}
.dep-card:hover { background: var(--dark-2); }
.dep-card.featured { background: var(--dark-2); }

.dep-rating {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .15em;
  margin-bottom: 20px;
}

.dep-card p {
  font-size: .9rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  flex-shrink: 0;
}

.dep-author strong {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--white);
}
.dep-author span {
  display: block;
  font-size: .75rem;
  color: var(--white-dim);
}

/* ========== CONTATO ========== */
.contato {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contato-info h2 { margin-bottom: 20px; }
.contato-info > p { color: var(--white-dim); font-size: .9rem; margin-bottom: 40px; line-height: 1.75; }

.contato-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contato-links li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contato-links li span {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.contato-links a {
  font-size: .9rem;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.contato-links a:hover { color: var(--gold); }

.contato-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.form-field input,
.form-field textarea {
  background: var(--dark-2);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: border-color .2s;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.2); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(201,169,110,.5);
}

.contato-form .btn-dark { margin-top: 8px; align-self: flex-start; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand .logo-img { height: 36px; }
.footer-brand p { font-size: .75rem; color: var(--white-dim); }

.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ========== CART ========== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  background: var(--dark);
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.close-cart {
  background: none;
  border: 1px solid var(--line);
  color: var(--white-dim);
  width: 36px; height: 36px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.close-cart:hover { border-color: rgba(255,255,255,.25); color: var(--white); }

.cart-items { flex: 1; overflow-y: auto; padding: 24px 32px; }

.cart-empty {
  color: var(--white-dim);
  font-size: .88rem;
  padding: 48px 0;
  letter-spacing: .04em;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  animation: slideIn .2s var(--ease);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item-img-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.cart-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-info { flex: 1; }
.cart-item-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.cart-item-info span { font-size: .8rem; color: var(--gold); }

.cart-item-controls { display: flex; align-items: center; gap: 12px; }

.qty-btn {
  background: var(--dark-2);
  border: 1px solid var(--line);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
  line-height: 1;
}
.qty-btn:hover { background: var(--dark-3); border-color: rgba(255,255,255,.2); }

.cart-item-qty { font-size: .85rem; font-weight: 500; min-width: 16px; text-align: center; }

.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--line);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cart-total > span:first-child {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white-dim);
}
.cart-total > span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-lt);
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  backdrop-filter: blur(8px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: translateY(16px);
  transition: transform .3s var(--ease);
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal-check {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}

.modal h3 { margin-bottom: 12px; }
.modal p { color: var(--white-dim); font-size: .9rem; margin-bottom: 32px; line-height: 1.7; }

/* ========== CHECKOUT MODAL ========== */
.checkout-modal {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 40px;
  text-align: left;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.checkout-header h3 { font-size: 1.3rem; }

.co-row {
  display: flex;
  gap: 16px;
}
.co-row .form-field { flex: 1; }

.co-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  margin: 20px 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
}
.co-total-line span:last-child { color: var(--gold); font-weight: 600; }

.co-error {
  color: #e07070;
  font-size: .82rem;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(224,112,112,.08);
  border-radius: var(--radius);
}

@media (max-width: 600px) {
  .checkout-modal { padding: 28px 20px; }
  .co-row { flex-direction: column; gap: 0; }
  .co-row .form-field[style] { flex: unset; }
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--dark-2);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: .82rem;
  letter-spacing: .04em;
  z-index: 500;
  transition: transform .3s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ========== HEADER MOBILE TOGGLE ========== */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px;
  cursor: pointer;
  width: 40px; height: 40px;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--white);
  transition: transform .25s var(--ease), opacity .2s;
  border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== MOBILE NAV ========== */
.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 90;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
  border-top: 1px solid var(--line);
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
}
.mobile-nav-link:hover { color: var(--white); background: var(--dark-2); }

/* ========== RESPONSIVE ========== */

/* ========== RESPONSIVE ========== */

/* Tablet (≤ 960px) */
@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  /* Hero: empilha */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left {
    padding: 120px 48px 64px;
    text-align: center;
    align-items: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .stat { padding: 22px 20px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-img-wrap { height: 190px; }
  .dep-grid { grid-template-columns: 1fr; }
  .sobre-inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre-visual { height: 280px; }
  .contato-inner { grid-template-columns: 1fr; gap: 48px; }
  .menu-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  :root { --radius-lg: 8px; }

  .container { padding: 0 18px; }
  .header-inner { padding: 0 18px; }
  .logo { font-size: 1.2rem; }

  /* Hero */
  .hero-left { padding: 100px 24px 56px; }
  h1 { font-size: 2.5rem; }
  .hero-sub { font-size: .9rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .hero-actions .btn-dark,
  .hero-actions .btn-ghost { text-align: center; width: 100%; box-sizing: border-box; }
  /* Stats */
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
  .stat-divider { display: none; }
  .stat { padding: 18px 10px; }
  .stat span { font-size: 1.4rem; }
  .stat p { font-size: .65rem; }

  /* Seções */
  .menu,
  .sobre,
  .depoimentos,
  .contato { padding: 72px 0; }

  /* Filtros scroll horizontal */
  .filters {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }

  /* Grid 1 coluna */
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-img-wrap { height: 220px; }
  .product-info { padding: 18px 20px 20px; }

  /* Sobre */
  .b2 { min-height: 240px; padding: 32px; }
  .sobre-logo { max-width: 180px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contato-form .btn-dark { width: 100%; text-align: center; align-self: stretch; }

  /* Footer */
  .footer-inner { gap: 16px; }
  .footer-nav { flex-wrap: wrap; gap: 14px; }
  .footer-copy { font-size: .7rem; }

  /* Cart */
  .cart-sidebar { width: 100%; max-width: 100%; }
  .cart-header { padding: 20px 18px; }
  .cart-items { padding: 16px 18px; }
  .cart-footer { padding: 16px 18px; }

  /* Modal */
  .modal { padding: 40px 24px; }

  /* Toast */
  .toast {
    font-size: .78rem;
    padding: 10px 18px;
    white-space: normal;
    text-align: center;
    max-width: 85vw;
  }
}
