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

:root {
  --green: #9fcf3a;
  --green-dark: #8bbd2a;
  --dark: #15171a;
  --dark-2: #1d2024;
  --dark-3: #25282d;
  --orange: #f47b20;
  --orange-2: #f59d2e;
  --text: #2a2d31;
  --text-light: #6b7177;
  --muted: #aeb4ba;
  --bg-light: #f4f6f2;
  --white: #ffffff;
  --radius: 14px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { padding: 84px 0; }

/* ===================== EYEBROW / HEADINGS ===================== */
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--green-dark); }

.hl { color: var(--green); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--text); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .5px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .ic { flex-shrink: 0; }

.btn-whatsapp {
  background: var(--green);
  color: var(--dark);
  box-shadow: 0 8px 20px -8px rgba(159, 207, 58, .7);
}
.btn-whatsapp:hover { background: var(--green-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.sobre .btn-outline,
.section-head + * .btn-outline { color: var(--white); }

.btn-sm { padding: 9px 30px; font-size: .72rem; border-radius: 8px; }
.btn-lg { padding: 16px 30px; font-size: .85rem; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--green);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 1.18rem; font-weight: 800; letter-spacing: .5px; }
.logo-name strong { color: var(--white); font-weight: 800; }
.logo-name em { color: var(--green); font-style: normal; font-weight: 800; }
.logo-sub { font-size: .5rem; letter-spacing: 2px; color: var(--muted); margin-top: 3px; }

/* Nav */
.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a {
  color: #d7dade;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.main-nav a:hover,
.main-nav a.is-active { color: var(--green); }
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--green);
  transition: width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { width: 100%; }

/* Ações do header (Entrar + WhatsApp) */
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { padding: 11px 18px; }
.btn-ghost {
  background: transparent;
  color: #d7dade;
  border-color: rgba(255, 255, 255, .25);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--green); border-color: var(--green); }

/* Botão do carrinho / lista de orçamento */
.header-cart {
  position: relative; background: transparent; border: none; cursor: pointer;
  color: #d7dade; padding: 6px; display: flex; align-items: center; border-radius: 8px;
}
.header-cart:hover { color: var(--green); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--green); color: var(--dark);
  font-size: .68rem; font-weight: 800; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* Gaveta da lista de orçamento */
.cart-drawer { position: fixed; inset: 0; z-index: 1500; display: none; }
.cart-drawer.open { display: block; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(21, 23, 26, .55); }
.cart-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: 100%; max-width: 390px; background: var(--white);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(0, 0, 0, .5);
  animation: cartSlide .22s ease;
}
@keyframes cartSlide { from { transform: translateX(100%); } to { transform: none; } }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid #eef0ea;
}
.cart-head h3 { font-size: 1.15rem; }
.cart-x { background: #f0f2ec; border: none; width: 32px; height: 32px; border-radius: 9px; cursor: pointer; font-size: 20px; color: var(--text-light); }
.cart-x:hover { background: #e6e9e0; color: var(--text); }
.cart-body { flex: 1; overflow-y: auto; padding: 14px 22px; }
.cart-empty { text-align: center; color: var(--text-light); font-size: .9rem; padding: 40px 10px; line-height: 1.6; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #f0f2ec;
}
.cart-thumb {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 8px;
  background: #f0f2ec; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { flex: 1; font-size: .84rem; font-weight: 500; }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty button {
  width: 26px; height: 26px; border-radius: 7px; border: 1px solid #d8ddd2;
  background: #fafbf8; cursor: pointer; font-size: 15px; line-height: 1; color: var(--text);
}
.cart-qty button:hover { border-color: var(--green); color: var(--green-dark); }
.cart-qty-n { min-width: 18px; text-align: center; font-weight: 700; font-size: .9rem; }
.cart-remove { background: none; border: none; color: #c0392b; cursor: pointer; font-size: 18px; line-height: 1; padding: 4px; }
.cart-foot { padding: 18px 22px; border-top: 1px solid #eef0ea; }
.cart-checkout { width: 100%; justify-content: center; display: inline-flex; align-items: center; gap: 8px; }
.cart-clear { display: block; width: 100%; margin-top: 10px; background: none; border: none; color: var(--text-light); cursor: pointer; font-size: .82rem; font-family: inherit; }
.cart-clear:hover { color: #c0392b; }
.cart-note { font-size: .75rem; color: var(--text-light); text-align: center; margin-top: 12px; }

/* Controle de quantidade no card do produto */
.prod-cart { margin-top: auto; display: flex; justify-content: center; }
.prod-stepper { display: flex; align-items: center; gap: 8px; }
.prod-step {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--green);
  background: #fff; color: var(--green-dark); font-size: 17px; line-height: 1; cursor: pointer;
}
.prod-step:hover { background: var(--green); color: var(--dark); }
.prod-step-n { min-width: 24px; text-align: center; font-weight: 700; font-size: .95rem; }
.prod-step-rm {
  background: none; border: none; color: var(--text-light); font-size: .72rem;
  cursor: pointer; text-decoration: underline; margin-left: 4px; font-family: inherit;
}
.prod-step-rm:hover { color: #c0392b; }
.prod-step-unit { font-size: .8rem; color: var(--text-light); font-weight: 600; }
.cart-unit { font-size: .78rem; color: var(--text-light); font-weight: 600; }

/* Campo de quantidade digitável */
.prod-step-input, .cart-qty-input {
  width: 52px; text-align: center; font-family: inherit; font-weight: 700;
  border: 1px solid #d3d8cd; border-radius: 8px; padding: 6px 4px; font-size: .9rem;
  background: #fff; color: var(--text); -moz-appearance: textfield;
}
.prod-step-input:focus, .cart-qty-input:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(159,207,58,.18);
}
/* remove as setinhas nativas do input number */
.prod-step-input::-webkit-outer-spin-button, .prod-step-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button, .cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

/* Marca, destaque e unidade no card do produto */
.produto-card { position: relative; }
.produto-card.is-featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green) inset; }
.card-featured {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--green); color: var(--dark);
  font-size: .64rem; font-weight: 800; letter-spacing: .3px;
  padding: 3px 8px; border-radius: 20px;
}
.card-brand {
  display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 4px;
}
.card-unit { display: block; font-size: .72rem; color: var(--text-light); margin: -4px 0 12px; }

/* Mini aviso temporário */
.ev-toast {
  position: fixed; bottom: 92px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark); color: #fff; padding: 11px 20px; border-radius: 10px;
  font-size: .85rem; font-weight: 600; opacity: 0; pointer-events: none; transition: .25s; z-index: 1600;
}
.ev-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white);
  transition: .3s;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--dark) 0%, rgba(21, 23, 26, .9) 38%, rgba(21, 23, 26, .35) 62%, rgba(21, 23, 26, .65) 100%),
    url('../../public/banner-header.png') center right / cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 70px 24px;
}
.hero-content { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-text {
  color: #c4c8cd;
  font-size: 1.02rem;
  max-width: 510px;
  margin-bottom: 30px;
}
.hero-text strong { color: var(--white); font-weight: 600; }

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 34px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e4e7ea;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 1.25;
}
.hf-ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(159, 207, 58, .14);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Badge circular */
.hero-badge {
  position: absolute;
  top: 56px; right: 40px;
  width: 138px; height: 138px;
  z-index: 2;
}
.badge-ring {
  width: 100%; height: 100%;
  animation: spin 18s linear infinite;
}
.badge-ring text {
  fill: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}
.badge-bolt {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== PRODUTOS ===================== */
.produtos { background: var(--white); }
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.produto-card {
  background: var(--white);
  border: 1px solid #e8ebe5;
  border-radius: var(--radius);
  padding: 26px 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
/* botão sempre na base do card, mantendo todos alinhados */
.produto-card .btn {
  margin-top: auto;
  align-self: center;
}
.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, .22);
  border-color: var(--green);
}
.produto-img {
  height: 92px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
/* Carrossel de imagens do produto */
.produto-img .carousel { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 8px; }
.carousel-track { display: flex; height: 100%; transition: transform .3s ease; }
.carousel-track img { min-width: 100%; width: 100%; height: 100%; object-fit: contain; display: block; }
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(21, 23, 26, .55); color: #fff; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s;
}
.produto-card:hover .carousel-nav { opacity: 1; }
.carousel-nav.prev { left: 4px; }
.carousel-nav.next { right: 4px; }
.carousel-dots { position: absolute; bottom: 4px; left: 0; right: 0; display: flex; gap: 5px; justify-content: center; }
.carousel-dots .cdot { width: 6px; height: 6px; border-radius: 50%; background: #cfd4cb; cursor: pointer; }
.carousel-dots .cdot.active { background: var(--green); }
.produto-card h3 {
  font-size: .92rem;
  margin-bottom: 8px;
  min-height: 2.4em;
  display: flex; align-items: center; justify-content: center;
}
.produto-card p {
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: 18px;
  min-height: 4.2em;
}

/* ===================== SOBRE ===================== */
.sobre {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.sobre-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 480px;
}
.sobre-content {
  width: 50%;
  max-width: 560px;
  padding: 84px 48px 84px 0;
}
.sobre-content h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.sobre-content p {
  color: #c4c8cd;
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 480px;
}
/* Foto da loja preenchendo toda a metade direita, até a borda */
.sobre-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
}
.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right; /* foca na fachada da loja (lado direito da foto) */
}
.sobre-img::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 110px;
  background: linear-gradient(90deg, var(--dark), transparent);
}

/* ===================== DIFERENCIAIS ===================== */
.diferenciais { background: var(--bg-light); }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.dif-item { text-align: center; padding: 0 6px; }
.dif-ic {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #e2e6dd;
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, .25);
}
.dif-item h3 {
  font-size: .82rem;
  letter-spacing: .6px;
  margin-bottom: 7px;
  color: var(--text);
}
.dif-item p { font-size: .82rem; color: var(--text-light); }

/* ===================== CTA WHATSAPP ===================== */
.cta-whats {
  background: linear-gradient(100deg, var(--orange) 0%, var(--orange-2) 100%);
  padding: 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.cta-ic {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-text { flex: 1; color: var(--white); }
.cta-text h2 { color: var(--white); font-size: clamp(1.2rem, 2.4vw, 1.7rem); margin-bottom: 4px; }
.cta-text p { font-size: .98rem; opacity: .95; }
.cta-whats .btn-whatsapp { box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .4); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--dark); color: #c4c8cd; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr 1.2fr;
  gap: 34px;
  padding-top: 64px;
  padding-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-img { height: 56px; }
.footer-desc { font-size: .85rem; max-width: 300px; margin-bottom: 20px; color: #9aa0a6; }
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #c4c8cd;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.social a:hover { background: var(--green); color: var(--dark); }

.footer-col h4 {
  color: var(--white);
  font-size: .82rem;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a, .footer-contact li {
  font-size: .85rem;
  color: #9aa0a6;
  transition: color .2s ease;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-contact li { margin-bottom: 11px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-bottom a { color: var(--green); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: .78rem;
  color: #7d838a;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===================== WHATS FLOAT ===================== */
.whats-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--green);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .5);
  z-index: 60;
  transition: transform .2s ease;
  animation: pulse 2.4s infinite;
}
.whats-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(159, 207, 58, .5); }
  70% { box-shadow: 0 0 0 16px rgba(159, 207, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(159, 207, 58, 0); }
}

/* ===================== PAGE HERO (banner interno) ===================== */
/* O banner padrão fica aqui (e não em style inline) porque url() dentro de
   custom property é resolvido em relação a este arquivo no Chrome. */
.page-hero {
  --page-banner: url('../../public/banner-header.png');
  position: relative;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 104px 0 96px;
  overflow: hidden;
}
/* Camada 1: imagem + degradês + brilho verde da marca */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 60% 90% at 82% -20%, rgba(159, 207, 58, .28), transparent 60%),
    radial-gradient(ellipse 50% 80% at 6% 120%, rgba(244, 123, 32, .18), transparent 55%),
    linear-gradient(115deg, rgba(21, 23, 26, .94) 28%, rgba(21, 23, 26, .55) 78%, rgba(21, 23, 26, .8) 100%),
    var(--page-banner, none);
  background-size: cover, cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Camada 2: malha de pontos + borda inferior */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(rgba(0,0,0,.9), transparent 70%);
  mask-image: linear-gradient(rgba(0,0,0,.9), transparent 70%);
  border-bottom: 3px solid var(--green);
}
.page-hero[data-banner="sobre"] { --page-banner: url('../../public/banner-loja.png'); }
.page-hero .container { position: relative; z-index: 1; }
/* Rótulo com traços laterais */
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.page-hero .eyebrow::before,
.page-hero .eyebrow::after {
  content: '';
  width: 30px; height: 2px;
  background: var(--green);
  opacity: .65;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}
.page-hero-sub {
  color: #ccd0d5;
  font-size: 1.04rem;
  max-width: 620px;
  margin: 0 auto 4px;
}
.breadcrumb {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .5px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }

/* Faixa de seção clara genérica */
.section.section-light { background: var(--bg-light); }
.lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 1.02rem;
}

/* ===================== PARCEIROS ===================== */
.aviso-parceiros {
  display: flex; gap: 14px; align-items: flex-start;
  max-width: 880px; margin: 0 auto 40px;
  background: #fff8e6; border: 1px solid #f1dca0; border-left: 4px solid #e0a72e;
  border-radius: 12px; padding: 18px 20px;
}
.aviso-parceiros .aviso-ic { color: #d39414; flex-shrink: 0; margin-top: 1px; }
.aviso-parceiros strong { color: var(--text); }
.aviso-parceiros > div > strong { display: block; margin-bottom: 6px; font-size: .98rem; }
.aviso-parceiros p { color: #6b5b2e; font-size: .85rem; line-height: 1.6; margin: 0; }

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.parceiro-card {
  background: var(--white);
  border: 1px solid #e8ebe5;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.parceiro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, .2);
  border-color: var(--green);
}
.parceiro-avatar {
  width: 78px; height: 78px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #e2e6dd;
  overflow: hidden;
}
.parceiro-avatar img { width: 100%; height: 100%; object-fit: cover; }
.parceiro-card { display: flex; flex-direction: column; }
.parceiro-card .btn { margin-top: auto; align-self: center; }
.parceiro-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.parceiro-tag {
  display: inline-block;
  background: rgba(159, 207, 58, .16);
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.parceiro-card p { font-size: .85rem; color: var(--text-light); margin-bottom: 18px; }
.parceiro-meta { font-size: .8rem; color: var(--text-light); margin-bottom: 18px; }
.parceiro-meta span { display: block; margin-bottom: 4px; }

.seja-parceiro {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin-top: 56px;
}
.seja-parceiro h2 { color: var(--white); margin-bottom: 12px; }
.seja-parceiro p { color: #c4c8cd; max-width: 560px; margin: 0 auto 26px; }

/* ===================== CONTATO ===================== */
.contato-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid #e8ebe5;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, .25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: inherit;
  font-size: .9rem;
  padding: 12px 14px;
  border: 1px solid #d8ddd2;
  border-radius: 9px;
  background: #fafbf8;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(159, 207, 58, .18);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: var(--text-light); margin-top: 4px; }

.contato-info { display: flex; flex-direction: column; gap: 20px; }
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-ic {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(159, 207, 58, .14);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.info-item h4 { font-size: .9rem; margin-bottom: 2px; }
.info-item p, .info-item a { font-size: .88rem; color: var(--text-light); }
.info-item a:hover { color: var(--green-dark); }
.map-embed {
  margin-top: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8ebe5;
  height: 200px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ----- Página de contato: cards das lojas ----- */
.lojas-grid { display: grid; gap: 18px; }
.loja-card {
  background: var(--white);
  border: 1px solid #e8ebe5;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 14px 34px -28px rgba(0, 0, 0, .25);
}
.loja-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.loja-addr {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .86rem; color: var(--text-light); margin-bottom: 14px;
}
.loja-addr svg { color: var(--green-dark); flex-shrink: 0; margin-top: 1px; }
.loja-wa { display: inline-flex; align-items: center; gap: 7px; }
.contato-extra {
  display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 6px;
  font-size: .85rem; color: var(--text-light);
}
.contato-extra span { display: inline-flex; align-items: center; gap: 7px; }
.contato-extra svg { color: var(--green-dark); }
.contato-extra a { color: var(--text-light); }
.contato-extra a:hover { color: var(--green-dark); }

/* ===================== MODAL WHATSAPP (escolha de loja) ===================== */
.wa-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.wa-modal.open { display: flex; }
.wa-modal-backdrop { position: absolute; inset: 0; background: rgba(21, 23, 26, .6); backdrop-filter: blur(2px); }
.wa-modal-card {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 18px;
  width: 100%; max-width: 430px; padding: 30px 26px 26px;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .55);
  animation: waPop .18s ease;
}
@keyframes waPop { from { transform: translateY(12px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.wa-modal-x {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
  border: none; background: #f0f2ec; border-radius: 9px; cursor: pointer;
  font-size: 20px; line-height: 1; color: var(--text-light);
}
.wa-modal-x:hover { background: #e6e9e0; color: var(--text); }
.wa-modal-title { font-size: 1.2rem; margin-bottom: 4px; }
.wa-modal-sub { font-size: .88rem; color: var(--text-light); margin-bottom: 20px; }
.wa-stores { display: flex; flex-direction: column; gap: 12px; }
.wa-store {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: #f7f9f4; border: 1px solid #e6ebdd; border-radius: 12px;
  padding: 14px 16px; cursor: pointer; font-family: inherit; transition: .15s;
}
.wa-store:hover { border-color: var(--green); background: rgba(159, 207, 58, .12); transform: translateY(-2px); }
.wa-store-ic {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: var(--green); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.wa-store-info { display: flex; flex-direction: column; gap: 2px; }
.wa-store-info strong { font-size: .98rem; color: var(--text); }
.wa-store-addr { font-size: .8rem; color: var(--text-light); }
.wa-store-phone { font-size: .82rem; color: var(--green-dark); font-weight: 700; }

/* ===================== SHOP / E-COMMERCE ===================== */
.shop { padding: 50px 0 70px; }
.shop-layout { display: grid; grid-template-columns: 270px 1fr; gap: 30px; align-items: start; }

/* Sidebar de filtros */
.shop-sidebar { position: sticky; top: 92px; }
.filters-card {
  background: var(--white);
  border: 1px solid #e8ebe5;
  border-radius: var(--radius);
  overflow: hidden;
}
.filter-group { padding: 18px 20px; border-bottom: 1px solid #eef1ea; }
.filter-group:last-child { border-bottom: none; }
.filter-title {
  font-size: .74rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--text); margin-bottom: 14px;
}
.search-box { position: relative; }
.search-box input {
  width: 100%; padding: 11px 13px 11px 38px;
  border: 1px solid #d8ddd2; border-radius: 9px; font-family: inherit; font-size: .88rem; background: #fafbf8;
}
.search-box input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(159,207,58,.18); }
.search-box svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #9aa0a6; }

.cat-item { border-bottom: 1px dashed #eef1ea; }
.cat-item:last-child { border-bottom: none; }
.cat-head { display: flex; align-items: center; gap: 9px; padding: 9px 0; cursor: pointer; }
.cat-head .cat-name { flex: 1; font-size: .9rem; font-weight: 600; color: var(--text); }
.cat-head .chev { color: var(--text-light); transition: transform .2s; }
.cat-item.open .chev { transform: rotate(90deg); }
.cat-head input { width: 16px; height: 16px; accent-color: var(--green-dark); cursor: pointer; }
.subs { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding-left: 25px; }
.cat-item.open .subs { max-height: 320px; }
.check { display: flex; align-items: center; gap: 9px; padding: 6px 0; font-size: .84rem; color: var(--text-light); cursor: pointer; }
.check input { width: 15px; height: 15px; accent-color: var(--green-dark); cursor: pointer; }
.check:hover { color: var(--text); }
.subs .check:last-child { padding-bottom: 10px; }

.price-opt { display: flex; align-items: center; gap: 9px; padding: 6px 0; font-size: .85rem; color: var(--text-light); cursor: pointer; }
.price-opt input { accent-color: var(--green-dark); cursor: pointer; }
.price-opt:hover { color: var(--text); }

/* Conteúdo principal */
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.shop-count { font-size: .9rem; color: var(--text-light); }
.shop-count b { color: var(--text); }
.shop-sort { display: flex; align-items: center; gap: 8px; }
.shop-sort label { font-size: .8rem; color: var(--text-light); }
.shop-sort select { padding: 9px 12px; border: 1px solid #d8ddd2; border-radius: 9px; font-family: inherit; font-size: .85rem; background: #fff; cursor: pointer; }

.active-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.chip {
  background: rgba(159,207,58,.16); color: var(--green-dark);
  font-size: .76rem; font-weight: 600; padding: 5px 10px 5px 12px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer; border: none; font-family: inherit;
}
.chip:hover { background: rgba(159,207,58,.28); }
.chip .x { font-weight: 700; font-size: .95rem; line-height: 1; }
.chip-clear { background: #f0f2ec; color: var(--text-light); }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shop-grid .produto-card { padding: 22px 16px 22px; }
.shop-grid .produto-img { height: 88px; }
.produto-card .price { font-weight: 700; color: var(--text); font-size: 1.02rem; margin-bottom: 14px; }
.produto-card .price small { color: var(--text-light); font-weight: 500; font-size: .72rem; }
.shop-empty { grid-column: 1 / -1; text-align: center; padding: 50px 10px; color: var(--text-light); }

/* Botão de filtros (mobile) */
.filters-toggle {
  display: none; align-items: center; gap: 8px;
  background: var(--dark); color: #fff; border: none; font-family: inherit; font-weight: 600;
  padding: 11px 18px; border-radius: 10px; margin-bottom: 16px; cursor: pointer;
}

@media (max-width: 1080px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }
  .shop-sidebar.open { display: block; margin-bottom: 22px; }
  .filters-toggle { display: inline-flex; }
}
@media (max-width: 460px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .produtos-grid { grid-template-columns: repeat(3, 1fr); }
  .dif-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; order: 3; margin-left: 8px; }
  .header-actions { order: 2; margin-left: auto; }
  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--dark-2);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .header-cta { display: none; }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(21,23,26,.78) 0%, rgba(21,23,26,.92) 100%),
      url('../../public/banner-header.png') center / cover no-repeat;
  }
  .hero-badge { display: none; }
  .hero-features { flex-wrap: wrap; gap: 18px; }

  /* Sobre empilhado no mobile */
  .sobre-inner { flex-direction: column; min-height: 0; }
  .sobre-content { width: 100%; max-width: none; padding: 52px 0; order: 2; }
  .sobre-img { position: static; width: 100%; height: 280px; order: 1; }
  .sobre-img::before { display: none; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text { text-align: center; }

  .parceiros-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .parceiros-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .seja-parceiro { padding: 32px 22px; }
}
