/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg: #0A0A0A;
  --surface-1: #141414;
  --surface-2: #1C1C1C;
  --surface-3: #232323;
  --silver-a: #F2F2F2;
  --silver-b: #A8A8A8;
  --teal: #0ABAB5;
  --teal-light: #3FD6D0;
  --text: #D9D9D9;
  --text-muted: #8C8C8C;
  --border: rgba(255, 255, 255, 0.08);
  --border-teal: rgba(10, 186, 181, 0.35);
  --danger: #E8574A;
  --max: 1280px;
  --radius: 10px;
  --font-display: 'Exo 2', 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.silver-text {
  background: linear-gradient(180deg, var(--silver-a) 0%, var(--silver-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 0 0 12px;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  height: 1px;
  width: 28px;
  background: var(--teal);
  opacity: 0.7;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0;
  text-wrap: balance;
}

.section-title {
  font-size: 26px;
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

section { padding: 56px 0; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 14px 26px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: #05201F;
  box-shadow: 0 0 0 rgba(10, 186, 181, 0);
}

.btn-primary:hover {
  box-shadow: 0 0 22px rgba(10, 186, 181, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--silver-a);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-light);
}

.btn-block { width: 100%; }

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.link-teal {
  color: var(--teal-light);
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid transparent;
}
.link-teal:hover { border-color: var(--teal-light); }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.top-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 7px 12px;
  letter-spacing: 0.3px;
}
.top-bar strong { color: var(--teal-light); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-link img {
  height: 38px;
  width: auto;
}

.logo-fallback {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 19px;
}
.logo-fallback .tirze { color: var(--silver-a); }
.logo-fallback .fit { color: var(--teal); }

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 26px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--teal-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--silver-a);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: background .15s;
}
.icon-btn:hover { background: rgba(255,255,255,0.06); color: var(--teal-light); }

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--teal);
  color: #05201F;
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--silver-a);
  width: 38px;
  height: 38px;
}

.search-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-teal);
  padding: 14px 20px;
  display: none;
}
.search-bar.open { display: block; }
.search-bar form {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.search-bar input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.search-bar input:focus { outline: none; border-color: var(--teal); }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
}

/* Mobile drawer menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
}
.mobile-nav.open { visibility: visible; }
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity .2s ease;
}
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 78%;
  max-width: 320px;
  background: var(--surface-1);
  border-right: 1px solid var(--border-teal);
  padding: 24px 22px;
  transform: translateX(-100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--silver-a);
}
.mobile-nav-panel a:hover { color: var(--teal-light); }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
}

@media (min-width: 960px) {
  .mobile-nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 50% 30%, #101c1c 0%, #0A0A0A 65%);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(10,186,181,0.10), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(63,214,208,0.08), transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 90px 20px 50px;
}

.hero-banner {
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 28px;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-teal);
  box-shadow: 0 0 60px rgba(10,186,181,0.08);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
}

.hero h1 {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero-slogan {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--teal-light);
  margin-bottom: 22px;
}

.hero p.lede {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; max-width: none; }
  .hero h1 { font-size: 42px; }
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.beneficios {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (min-width: 640px) {
  .beneficios-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .beneficios-grid { grid-template-columns: repeat(6, 1fr); }
}

.beneficio-item {
  text-align: center;
  padding: 10px;
}

.beneficio-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1.5px solid var(--border-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.beneficio-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: block;
}

/* ============================================================
   PRODUCT CARDS / GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 720px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
@media (min-width: 1080px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

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

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

.product-card-photo {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 35%, #1a2828 0%, #0d1414 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--teal);
  color: #05201F;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
}

.photo-placeholder-icon {
  color: var(--teal);
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--silver-a);
  line-height: 1.3;
}

.product-card-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.product-card-price {
  margin-top: auto;
}

.price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-now {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--teal-light);
}

.price-parcel {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.btn-add-cart {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border-teal);
  color: var(--silver-a);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 10px;
  border-radius: 24px;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.btn-add-cart:hover {
  background: var(--teal);
  color: #05201F;
}

/* ============================================================
   CATEGORIAS EM DESTAQUE
   ============================================================ */
.categorias-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .categorias-duo { grid-template-columns: 1fr 1fr; }
}

.categoria-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
}

.categoria-card .cat-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, #182525, #0A0A0A 70%);
}

.categoria-card .cat-content {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.categoria-card h3 {
  font-size: 22px;
  color: var(--silver-a);
  margin-bottom: 6px;
}
.categoria-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================================
   FAIXA INSTITUCIONAL
   ============================================================ */
.faixa-institucional {
  text-align: center;
  background: linear-gradient(180deg, var(--surface-1), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faixa-institucional h2 {
  font-size: 22px;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   SELOS DE CONFIANÇA
   ============================================================ */
.selos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 720px) { .selos-grid { grid-template-columns: repeat(4, 1fr); } }

.selo-item {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-1);
}
.selo-item svg { color: var(--teal); margin-bottom: 10px; }
.selo-item span {
  font-size: 12px;
  font-weight: 600;
  display: block;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.depoimentos-track::-webkit-scrollbar { height: 4px; }
.depoimentos-track::-webkit-scrollbar-thumb { background: var(--border-teal); border-radius: 4px; }

.depoimento-card {
  scroll-snap-align: start;
  flex: 0 0 82%;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
@media (min-width: 720px) { .depoimento-card { flex-basis: 32%; } }

.stars { color: var(--teal); font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.depoimento-card p { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.depoimento-autor { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.instagram-grid a {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #14201f, #0A0A0A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  opacity: 0.85;
  transition: opacity .15s;
}
.instagram-grid a:hover { opacity: 1; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--surface-1);
  border-top: 1px solid var(--border-teal);
  text-align: center;
}
.newsletter h2 { font-size: 20px; margin-bottom: 8px; }
.newsletter p { color: var(--text-muted); font-size: 13px; margin-bottom: 22px; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 560px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 12px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.newsletter-form input:focus { outline: none; border-color: var(--teal); }
.newsletter-note { font-size: 11px; color: var(--text-muted); margin-top: 12px; }

/* ============================================================
   PAGE HEADER (categoria, produto, institucionais)
   ============================================================ */
.page-header {
  padding: 40px 0 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.breadcrumb a:hover { color: var(--teal-light); }
.page-header h1 { font-size: 26px; }
.page-header p { color: var(--text-muted); font-size: 13px; margin-top: 8px; }

/* ============================================================
   FILTROS DE CATEGORIA
   ============================================================ */
.filters-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 0;
  -webkit-overflow-scrolling: touch;
}
.filter-chip {
  flex-shrink: 0;
  background: var(--surface-1);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.filter-chip.active {
  background: var(--teal);
  color: #05201F;
  border-color: var(--teal);
}

.sort-select {
  background: var(--surface-1);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ============================================================
   EM BREVE (skincare)
   ============================================================ */
.em-breve-card {
  background: var(--surface-1);
  border: 1px dashed var(--border-teal);
  border-radius: var(--radius);
  text-align: center;
  padding: 30px 18px;
}
.em-breve-card .product-card-photo { border-radius: 8px; margin-bottom: 16px; opacity: 0.55; }
.em-breve-tag {
  display: inline-block;
  background: var(--surface-3);
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.avise-me-form {
  max-width: 380px;
  margin: 40px auto 0;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.avise-me-form h3 { font-size: 17px; margin-bottom: 6px; }
.avise-me-form p { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.avise-me-form .field { margin-bottom: 12px; text-align: left; }

/* ============================================================
   FORM FIELDS (genérico)
   ============================================================ */
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 560px) {
  .field-row.cols-2 { grid-template-columns: 1fr 1fr; }
  .field-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.form-msg {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 12px;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(10,186,181,0.1); color: var(--teal-light); border: 1px solid var(--border-teal); }

/* ============================================================
   PRODUTO — página
   ============================================================ */
.produto-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 900px) {
  .produto-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.produto-galeria-main {
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 50% 35%, #182525 0%, #0d1414 75%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  margin-bottom: 12px;
}
.produto-galeria-main img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform .3s ease; }
.produto-galeria-main.zoomed img { transform: scale(1.6); cursor: zoom-out; }

.produto-thumbs {
  display: flex;
  gap: 10px;
}
.produto-thumbs button {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--surface-1);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produto-thumbs button.active { border-color: var(--teal); }
.produto-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.produto-info .product-card-sub { margin-bottom: 4px; }
.produto-info h1 { font-size: 24px; margin-bottom: 10px; }

.produto-preco-box {
  margin: 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.produto-preco-now { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--teal-light); }
.produto-preco-pix { font-size: 13px; color: var(--teal); font-weight: 600; margin-top: 4px; }
.produto-preco-parcelas { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.qtd-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  width: fit-content;
}
.qtd-selector button {
  background: var(--surface-2);
  border: none;
  color: var(--silver-a);
  width: 38px;
  height: 38px;
  font-size: 16px;
}
.qtd-selector span {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.produto-acoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
@media (min-width: 480px) { .produto-acoes { flex-direction: row; } }

.frete-calc {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}
.frete-calc input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
}
.frete-resultado {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  display: none;
}
.frete-resultado.show { display: block; }
.frete-resultado strong { color: var(--teal-light); }

.alerta-fixo {
  background: rgba(232, 87, 74, 0.08);
  border: 1px solid rgba(232, 87, 74, 0.35);
  color: #F0A79E;
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
  margin-top: 18px;
}

.produto-tabs-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  margin-top: 50px;
}
.produto-tabs-nav button {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
}
.produto-tabs-nav button.active {
  color: var(--teal-light);
  border-color: var(--teal);
}
.produto-tab-panel {
  display: none;
  padding: 26px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.produto-tab-panel.active { display: block; }
.produto-tab-panel ul { padding-left: 18px; list-style: disc; }
.produto-tab-panel li { margin-bottom: 6px; }

.tabela-nutricional {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tabela-nutricional th, .tabela-nutricional td {
  text-align: left;
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
}
.tabela-nutricional th { color: var(--text-muted); font-weight: 600; }

.compre-junto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.compre-junto-item {
  width: 64px;
  height: 64px;
  background: var(--surface-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compre-junto-item img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

/* ============================================================
   CARRINHO (drawer)
   ============================================================ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  visibility: hidden;
}
.cart-drawer.open { visibility: visible; }
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity .2s ease;
}
.cart-drawer.open .cart-backdrop { opacity: 1; }

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  max-width: 400px;
  background: var(--surface-1);
  border-left: 1px solid var(--border-teal);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.cart-drawer.open .cart-panel { transform: translateX(0); }

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-panel-head h3 { font-size: 16px; }
.cart-panel-head button { background: none; border: none; color: var(--text-muted); font-size: 20px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}
.cart-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  padding: 60px 20px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-photo {
  width: 60px;
  height: 60px;
  background: var(--surface-2);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-photo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 13px; font-weight: 700; color: var(--silver-a); margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--teal-light); font-weight: 700; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}
.cart-item-remove { background: none; border: none; color: var(--text-muted); font-size: 11px; text-decoration: underline; }
.cart-item-remove:hover { color: var(--danger); }

.cart-panel-foot {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--border);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 14px;
}
.cart-subtotal-row strong { color: var(--teal-light); font-size: 17px; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 36px;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.checkout-step .num {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.checkout-step.active { color: var(--silver-a); }
.checkout-step.active .num { background: var(--teal); border-color: var(--teal); color: #05201F; }
.checkout-step.done .num { background: var(--teal); border-color: var(--teal); color: #05201F; }
.checkout-step-sep { width: 26px; height: 1px; background: var(--border); align-self: center; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 900px) {
  .checkout-layout { grid-template-columns: 1.4fr 1fr; align-items: start; }
}

.checkout-panel {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.checkout-panel h3 { font-size: 16px; margin-bottom: 18px; }
.checkout-panel .field { margin-bottom: 14px; }

.checkout-summary {
  background: var(--surface-1);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 84px;
}
.checkout-summary h3 { font-size: 15px; margin-bottom: 16px; }
.checkout-summary-item { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; color: var(--text-muted); }
.checkout-summary-total { display: flex; justify-content: space-between; font-size: 17px; font-weight: 800; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.checkout-summary-total strong { color: var(--teal-light); }

.pay-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
}
.pay-option.active { border-color: var(--teal); background: rgba(10,186,181,0.05); }
.pay-option input { accent-color: var(--teal); }
.pay-option .label { font-size: 14px; font-weight: 700; color: var(--silver-a); }
.pay-option .desc { font-size: 12px; color: var(--text-muted); }

.checkout-success {
  text-align: center;
  padding: 60px 20px;
}
.checkout-success .check-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(10,186,181,0.12);
  border: 2px solid var(--teal);
  color: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}
.checkout-success h2 { font-size: 22px; margin-bottom: 10px; }
.checkout-success p { color: var(--text-muted); font-size: 14px; margin-bottom: 26px; }

/* ============================================================
   ÁREA DO CLIENTE
   ============================================================ */
.conta-tabs { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.conta-tab {
  background: var(--surface-1);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.conta-tab.active { background: var(--teal); color: #05201F; border-color: var(--teal); }
.conta-panel { display: none; }
.conta-panel.active { display: block; }

.auth-cols { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 780px) { .auth-cols { grid-template-columns: 1fr 1fr; } }
.auth-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.auth-card h3 { font-size: 17px; margin-bottom: 18px; }

.pedido-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 14px;
}
.pedido-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.pedido-head strong { font-size: 14px; color: var(--silver-a); }
.pedido-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.pedido-status.entregue { background: rgba(10,186,181,0.12); color: var(--teal-light); }
.pedido-status.transito { background: rgba(242,201,76,0.12); color: #E8C94C; }
.pedido-lista { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }

.endereco-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.endereco-card strong { color: var(--silver-a); display: block; margin-bottom: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 18px 0;
  color: var(--silver-a);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.faq-question .icon { color: var(--teal); font-size: 18px; transition: transform .2s; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 13px; color: var(--text-muted); line-height: 1.6; padding-bottom: 18px; }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre-hero {
  text-align: center;
  padding: 50px 0;
}
.sobre-bloco { margin-bottom: 40px; }
.sobre-bloco h2 { font-size: 20px; margin-bottom: 12px; }
.sobre-bloco p { font-size: 14px; line-height: 1.75; color: var(--text); max-width: 680px; }
.sobre-valores { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .sobre-valores { grid-template-columns: repeat(3, 1fr); } }
.valor-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.valor-card svg { color: var(--teal); margin-bottom: 12px; }
.valor-card h3 { font-size: 15px; margin-bottom: 8px; }
.valor-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 900px) { .contato-grid { grid-template-columns: 1fr 1fr; } }
.contato-info-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.contato-info-card svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.contato-info-card strong { display: block; font-size: 14px; color: var(--silver-a); margin-bottom: 4px; }
.contato-info-card span { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-bottom: 34px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-a);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--text-muted); }
.footer-col a:hover { color: var(--teal-light); }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal-light); }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.payment-chip {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

/* ============================================================
   WHATSAPP FLUTUANTE + COOKIE BANNER
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #05201F;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(10,186,181,0.4);
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 800;
  background: var(--surface-1);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius);
  padding: 18px;
  display: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.cookie-banner-actions { display: flex; gap: 10px; }

@media (min-width: 720px) {
  .cookie-banner { max-width: 420px; left: auto; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (min-width: 720px) {
  section { padding: 76px 0; }
  .section-title { font-size: 32px; }
}
