/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #F5F5F5;
  color: #374151;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, button, textarea, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; }

/* ================================================
   UTILITÁRIOS
================================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================================================
   TOP BAR
================================================ */
.top-bar,
.top-promo {
  background: #15803D;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

.top-bar span { display: flex; align-items: center; gap: 5px; }

/* ================================================
   HEADER
================================================ */
.site-header,
.header-main {
  background: #fff;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

/* LOGO */
.logo-area,
.logo,
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-area img,
.logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text { line-height: 1.1; }
.logo-text .lt1 { font-size: 11px; font-weight: 600; color: #F97316; letter-spacing: 1px; text-transform: uppercase; }
.logo-text .lt2 { font-size: 19px; font-weight: 900; color: #15803D; }
.logo-text .lt3 { font-size: 19px; font-weight: 900; color: #F97316; }

.brand-top  { font-size: 12px; font-weight: 600; color: #F97316; }
.brand-bottom { font-size: 20px; font-weight: 800; color: #15803D; }

/* SEARCH */
.header-search,
.search-box {
  flex: 1;
  min-width: 0;
  max-width: 560px;
  display: flex;
  border: 2px solid #E5E7EB;
  border-radius: 50px;
  overflow: hidden;
  transition: 0.3s;
}

.header-search:focus-within,
.search-box:focus-within { border-color: #F97316; }

.header-search input,
.search-box input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 14px;
  background: transparent;
}

.header-search button,
.search-box button {
  background: #F97316;
  border: none;
  padding: 0 20px;
  color: white;
  font-size: 17px;
  transition: 0.3s;
  flex-shrink: 0;
}

.header-search button:hover,
.search-box button:hover { background: #EA580C; }

/* HEADER ACTIONS */
.header-actions,
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-actions a,
.header-right a {
  text-decoration: none;
  font-weight: 600;
  color: #374151;
  transition: 0.3s;
  white-space: nowrap;
}

.header-actions a:hover,
.header-right a:hover { color: #F97316; }

.btn-conta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-conta:hover { color: #F97316; }
.btn-conta .account-label { font-size: 11px; color: #9CA3AF; display: block; font-weight: 400; }
.btn-conta .account-name  { font-size: 14px; font-weight: 700; display: block; }

/* CART */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #374151;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
}

.cart-btn:hover { color: #F97316; }
.cart-btn svg { width: 26px; height: 26px; }

.cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: #EF4444;
  color: white;
  border-radius: 50%;
  width: 19px; height: 19px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}

/* USER DROPDOWN */
.user-dropdown { position: relative; }

.user-trigger {
  cursor: pointer;
  font-weight: 600;
  color: #374151;
  transition: 0.3s;
  white-space: nowrap;
}

.user-trigger:hover { color: #F97316; }

.user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.user-menu.active { display: flex; }

.user-menu a {
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: 0.2s;
  text-decoration: none;
}

.user-menu a:hover { background: #F3F4F6; color: #F97316; }
.user-menu hr { border: none; border-top: 1px solid #E5E7EB; margin: 4px 0; }

/* ================================================
   HAMBURGER MENU (mobile)
================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   NAV MENU
================================================ */
.nav-menu,
.menu-categorias {
  background: #F97316;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar,
.menu-categorias::-webkit-scrollbar { display: none; }

.nav-menu a,
.menu-categorias a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  transition: 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-menu a:hover,
.menu-categorias a:hover { background: rgba(0,0,0,0.12); }

/* ================================================
   HERO BANNER
================================================ */
.hero-banner {
  background: linear-gradient(135deg, #15803D 0%, #16A34A 60%, #1ca351 100%);
  padding: 40px 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(249,115,22,0.15), transparent 70%);
}

.hero-content { z-index: 1; max-width: 420px; padding-bottom: 40px; }

.hero-tag {
  display: inline-block;
  background: #F97316;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-content h1 span {
  font-size: 52px;
  color: #FCD34D;
  display: block;
}

.hero-content p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 24px; }

.btn-hero {
  display: inline-block;
  background: #F97316;
  color: white;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 32px;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0 8px 22px rgba(249,115,22,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero:hover { background: #EA580C; transform: translateY(-2px); }

.hero-image {
  z-index: 1;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.hero-image img {
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.2));
}

/* ================================================
   SEÇÕES HOME
================================================ */
.home-section { padding: 36px 40px; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 12px;
}

.section-title {
  font-size: 19px;
  font-weight: 800;
  color: #1F2937;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title .icon-circle {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #F97316;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.ver-mais-link {
  color: #F97316;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s;
}

.ver-mais-link:hover { color: #EA580C; }

/* ================================================
   GRID PRODUTOS
================================================ */
.produtos-grid,
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.produto-card,
.card-produto {
  background: white;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.produto-card:hover,
.card-produto:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.produto-card .promo-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: #EF4444;
  color: white;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.produto-card img,
.card-produto img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 8px;
  background: #F9FAFB;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.produto-card:hover img,
.card-produto:hover img { transform: scale(1.04); }

.produto-card h3,
.card-produto h3 {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
  line-height: 1.4;
  flex: 1;
}

.produto-card .marca-tag { font-size: 11px; color: #9CA3AF; margin-bottom: 6px; }

.produto-card .preco-de,
.preco-antigo {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: line-through;
}

.produto-card .preco-por,
.preco,
.preco-grande {
  font-size: 18px;
  font-weight: 900;
  color: #1F2937;
  margin-bottom: 10px;
}

.preco-por span { font-size: 13px; font-weight: 600; color: #6B7280; }
.preco-promocional { font-size: 24px; font-weight: 800; color: #16A34A; }

.produto-card .estoque-tag,
.estoque-alerta {
  font-size: 11px;
  color: #EF4444;
  font-weight: 700;
  margin-bottom: 8px;
  background: #FEE2E2;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* BOTÃO COMPRAR CARD */
.btn-comprar-card,
.btn-carrinho {
  width: 100%;
  padding: 10px;
  background: #F97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: auto;
}

.btn-comprar-card:hover,
.btn-carrinho:hover { background: #EA580C; }

/* ================================================
   SEÇÃO DUPLA
================================================ */
.dupla-section {
  padding: 0 40px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dupla-card {
  background: white;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.dupla-card .dupla-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dupla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dupla-item {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
  display: block;
}

.dupla-item:hover { background: #FEF3C7; }

.dupla-item img {
  width: 70px; height: 70px;
  object-fit: contain;
  margin: 0 auto 6px;
}

.dupla-item p { font-size: 12px; font-weight: 600; color: #374151; }

.btn-ver-mais {
  display: block;
  margin-top: 14px;
  text-align: center;
  padding: 10px;
  background: #F97316;
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-ver-mais:hover { background: #EA580C; }

/* ================================================
   BOTÕES GERAIS
================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  background: #F97316;
  color: white;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary:hover { background: #EA580C; }

.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #F3F4F6;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
  font-size: 14px;
}

.btn-voltar:hover { background: #E5E7EB; }

/* ================================================
   LOGIN / CADASTRO
================================================ */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 30px 16px;
  background: linear-gradient(135deg, #f0fdf4, #F3F4F6);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.login-card img.login-mascote {
  width: 90px;
  margin: 0 auto 20px;
  border-radius: 12px;
}

.login-card h2 { color: #15803D; margin-bottom: 8px; font-size: 22px; }
.login-card p  { color: #6B7280; margin-bottom: 22px; font-size: 14px; }

.login-card input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 2px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 14px;
  transition: 0.3s;
}

.login-card input:focus { outline: none; border-color: #F97316; }

.login-card button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  background: #F97316;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.login-card button:hover { background: #EA580C; }

.erro-login {
  color: #DC2626;
  background: #FEE2E2;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 13px;
}

.campo-senha { position: relative; margin-bottom: 16px; }
.campo-senha input { width: 100%; padding-right: 46px; margin-bottom: 0; }
.campo-senha span {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  cursor: pointer; font-size: 18px;
}

.link { margin-top: 12px; font-size: 14px; }
.link a { color: #F97316; font-weight: 600; }
.link a:hover { text-decoration: underline; }

/* ================================================
   CONTA / DASHBOARD
================================================ */
.conta-container {
  display: flex;
  gap: 28px;
  padding: 36px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.sidebar {
  width: 230px;
  flex-shrink: 0;
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: fit-content;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  transition: 0.3s;
}

.sidebar a:hover { background: #FFF7ED; color: #F97316; }
.sidebar a.ativo  { background: #F97316; color: white; }

.conta-content,
.conta-conteudo {
  flex: 1;
  min-width: 0;
  background: white;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.conta-content h2,
.conta-conteudo h2 { color: #15803D; margin-bottom: 20px; font-size: 20px; }

/* ================================================
   FORM GENÉRICO
================================================ */
.form-endereco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.form-endereco input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 2px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 14px;
  transition: 0.3s;
}

.form-endereco input:focus { outline: none; border-color: #F97316; }

.form-endereco button {
  grid-column: span 2;
  padding: 14px;
  border-radius: 10px;
  background: #F97316;
  color: white;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.form-endereco button:hover { background: #EA580C; }

/* ================================================
   PRODUTO PAGE
================================================ */
.container-produto {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  gap: 48px;
  padding: 0 24px;
  align-items: flex-start;
}

.produto-imagem { flex-shrink: 0; }

.produto-imagem img {
  width: 380px;
  height: 380px;
  object-fit: contain;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.produto-imagem img:hover { transform: scale(1.02); }

.produto-info { flex: 1; min-width: 0; }
.produto-info h1 { font-size: 26px; margin-bottom: 14px; line-height: 1.3; }
.descricao { color: #6B7280; margin-bottom: 18px; line-height: 1.6; }

.estoque { margin: 12px 0; font-weight: 600; font-size: 14px; }

.quantidade-box,
.quantidade-modern {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.quantidade-box button,
.quantidade-modern button {
  width: 44px; height: 44px;
  border: none;
  background: #F3F4F6;
  font-size: 20px; font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.quantidade-box button:hover,
.quantidade-modern button:hover { background: #F97316; color: white; }

.quantidade-box input,
.quantidade-modern input {
  width: 58px; height: 44px;
  text-align: center;
  border: none;
  font-size: 16px; font-weight: bold;
  outline: none;
}

.btn-comprar,
.btn-adicionar {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 22px rgba(249,115,22,0.35);
}

.btn-comprar:hover,
.btn-adicionar:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(249,115,22,0.45); }

/* ================================================
   DESTAQUE / PROMOÇÃO
================================================ */
.destaque-card {
  border: 2px solid #F97316;
  position: relative;
}

.destaque-card::before {
  content: "🔥 PROMOÇÃO";
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 10px; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(249,115,22,0.4);
}

.titulo-produtos { font-size: 20px; font-weight: 800; color: #1F2937; margin-bottom: 20px; }
.titulo-produtos.destaque { color: #F97316; }

/* ================================================
   BUSCA RESULTADO
================================================ */
.busca-header {
  background: white;
  padding: 18px 40px;
  border-bottom: 1px solid #E5E7EB;
}

.busca-header h2 { font-size: 17px; color: #374151; }
.busca-header span { color: #F97316; font-weight: 700; }

/* ================================================
   BENEFÍCIOS
================================================ */
.beneficios {
  display: flex;
  justify-content: space-around;
  padding: 20px 40px;
  background: white;
  border-bottom: 1px solid #E5E7EB;
  font-weight: 600;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ================================================
   WHATSAPP FLUTUANTE
================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
  z-index: 9998;
  transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 28px; height: 28px; }

/* ================================================
   FOOTER
================================================ */
.site-footer {
  background: linear-gradient(135deg, #15803D, #16A34A);
  color: white;
  padding: 48px 40px 28px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand .logo-footer {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .logo-footer img {
  width: 50px; height: 50px;
  object-fit: contain; border-radius: 8px;
  background: white; padding: 4px;
}

.footer-brand .slogan { font-size: 20px; font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
.footer-brand .slogan span { color: #FCD34D; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.75); }

.footer-col h4 {
  font-size: 14px; font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 5px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover { color: #FCD34D; padding-left: 4px; }

.social-links { display: flex; gap: 10px; margin-top: 8px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: 0.3s;
  text-decoration: none;
}

.social-btn:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ================================================
   SIDEBAR CARRINHO (legado)
================================================ */
.cart-sidebar {
  position: fixed; right: -400px; top: 0;
  width: 340px; height: 100%;
  background: #fff;
  box-shadow: -3px 0 12px rgba(0,0,0,0.15);
  transition: 0.35s; z-index: 9999;
  display: flex; flex-direction: column;
}

.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border-bottom: 1px solid #eee;
}

.cart-header h2 { font-size: 17px; }
.cart-header button { border: none; background: none; font-size: 20px; cursor: pointer; }

.cart-body {
  flex: 1; display: flex;
  justify-content: center; align-items: center; text-align: center; padding: 20px;
}

/* ================================================
   CARD ENDEREÇO
================================================ */
.card-endereco {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 20px;
  margin-top: 18px;
  border: 1px solid #E5E7EB;
}

/* ================================================
   RESPONSIVE — TABLET  (max 1024px)
================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .site-header, .header-main { padding: 12px 24px; }
  .home-section { padding: 28px 24px; }
  .dupla-section { padding: 0 24px 28px; }
  .busca-header { padding: 14px 24px; }
  .nav-menu, .menu-categorias { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer { padding: 36px 24px 24px; }
  .conta-container { padding: 28px 24px; }
  .beneficios { padding: 16px 24px; }
  .top-bar, .top-promo { padding: 8px 24px; gap: 16px; }
}

/* ================================================
   RESPONSIVE — MOBILE  (max 768px)
================================================ */
@media (max-width: 768px) {
  /* TOP BAR */
  .top-bar, .top-promo {
    font-size: 12px;
    padding: 7px 12px;
    gap: 10px;
  }

  /* HEADER */
  .site-header,
  .header-main {
    padding: 10px 14px;
    gap: 10px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
  }

  .logo-area,
  .logo { order: 1; flex: 0 0 auto; }

  .logo-area img,
  .logo img { width: 44px; height: 44px; }

  .logo-text .lt2,
  .logo-text .lt3 { font-size: 15px; }

  .header-search,
  .search-box {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }

  .header-right,
  .header-actions { order: 2; margin-left: auto; gap: 12px; }

  .btn-conta .account-label,
  .btn-conta .account-name { display: none; }

  .btn-conta > span:first-child { font-size: 24px; }

  /* NAV */
  .nav-menu,
  .menu-categorias {
    padding: 0 8px;
    gap: 0;
  }

  .nav-menu a,
  .menu-categorias a { font-size: 12px; padding: 10px 10px; }

  /* HERO */
  .hero-banner {
    padding: 28px 18px 0;
    min-height: auto;
    flex-direction: column;
    text-align: center;
  }

  .hero-content { max-width: 100%; padding-bottom: 24px; }
  .hero-content h1 { font-size: 26px; }
  .hero-content h1 span { font-size: 38px; }
  .hero-image { display: none; }

  /* SEÇÕES */
  .home-section { padding: 20px 14px; }
  .busca-header { padding: 12px 14px; }
  .beneficios { padding: 12px 14px; font-size: 13px; }

  /* GRID */
  .produtos-grid,
  .grid-produtos { grid-template-columns: 1fr 1fr; gap: 10px; }

  .produto-card,
  .card-produto { padding: 10px; border-radius: 10px; }

  .produto-card img,
  .card-produto img { height: 120px; }

  .produto-card h3,
  .card-produto h3 { font-size: 12px; }

  .produto-card .preco-por,
  .preco { font-size: 16px; }

  .btn-comprar-card,
  .btn-carrinho { font-size: 12px; padding: 9px 6px; }

  /* DUPLA */
  .dupla-section { grid-template-columns: 1fr; padding: 0 14px 20px; }
  .dupla-item img { width: 55px; height: 55px; }

  /* PRODUTO PAGE */
  .container-produto {
    flex-direction: column;
    gap: 24px;
    margin: 20px auto;
    padding: 0 14px;
  }

  .produto-imagem img {
    width: 100%;
    height: 280px;
    max-width: 340px;
    margin: 0 auto;
  }

  .produto-info h1 { font-size: 20px; }

  /* CONTA */
  .conta-container {
    flex-direction: column;
    gap: 16px;
    padding: 16px 14px;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    padding: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar a {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 9px 14px;
    border-radius: 20px;
    font-size: 13px;
  }

  .conta-content,
  .conta-conteudo { padding: 20px 16px; }

  /* FORM ENDEREÇO */
  .form-endereco { grid-template-columns: 1fr; }
  .form-endereco button { grid-column: span 1; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { padding: 28px 14px 18px; }

  /* LOGIN */
  .login-card { padding: 30px 20px; }
}

/* ================================================
   RESPONSIVE — SMALL PHONE  (max 480px)
================================================ */
@media (max-width: 480px) {
  .top-bar, .top-promo { flex-direction: column; gap: 4px; font-size: 11px; padding: 6px; }

  .hero-content h1 { font-size: 22px; }
  .hero-content h1 span { font-size: 30px; }
  .btn-hero { font-size: 13px; padding: 11px 24px; }

  .produtos-grid,
  .grid-produtos { grid-template-columns: 1fr 1fr; gap: 8px; }

  .produto-card img,
  .card-produto img { height: 100px; }

  .section-title { font-size: 16px; }
  .section-title .icon-circle { width: 28px; height: 28px; font-size: 14px; }

  .dupla-grid { grid-template-columns: 1fr 1fr; }
  .dupla-item img { width: 48px; height: 48px; }

  .footer-grid { grid-template-columns: 1fr; }
}

/* ================================================
   TOUCH & ACESSIBILIDADE
================================================ */
@media (hover: none) {
  .produto-card:hover,
  .card-produto:hover { transform: none; }
  .produto-card:active,
  .card-produto:active { transform: scale(0.98); }
  .btn-comprar-card:active,
  .btn-carrinho:active { transform: scale(0.97); }
}

/* Foco visível para teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}
