:root{
  --green:#2d8c4e;--green-h:#25763f;--green-bright:#1a6e38;--green-light:#e8f5ee;--green-mid:#b8dfc7;
  --bg:#f5f9f6;--bg2:#fff;--bg3:#f0f7f3;--bg4:#e8f5ee;
  --border:#d8ece1;--border2:#c2ddd0;
  --text:#1a2e1c;--text2:#4a6b4e;--text3:#8aab8e;
  --red:#e53935;--red-soft:#fdecea;
  --orange:#f57c00;--orange-soft:#fff3e0;
  --nav-bg:#161d17;--nav-text:#C8E6C9;--nav-sub:#FF8F00;
  --shadow:0 2px 12px rgba(45,140,78,.12);--r:14px;--font:'DM Sans',sans-serif
}
[data-theme="dark"]{
  --bg:#0f1410;--bg2:#161d17;--bg3:#1c251e;--bg4:#222d24;
  --border:#2a3a2c;--border2:#334535;
  --text:#e8f0e9;--text2:#8fa890;--text3:#5a7060;
  --green-bright:#4ade80;--green-light:#1a4a28;
  --red-soft:#2a1515;--orange:#ffa726;--orange-soft:#2a1e0a;
  --nav-bg:#161d17;
  --shadow:0 2px 12px rgba(0,0,0,.4)
}
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
html{scroll-behavior:smooth}
body{font-family:var(--font);background:var(--bg);color:var(--text);overflow-x:hidden;-webkit-font-smoothing:antialiased;font-size:15px}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font-family:var(--font);cursor:pointer}

/* ── NAV ── */
nav{
  position:sticky;top:0;left:0;right:0;z-index:300;
  height:64px;padding:0 24px;
  display:flex;align-items:center;justify-content:space-between;
  background:var(--nav-bg);
  border-bottom:1px solid rgba(255,255,255,0.06);
  box-shadow:0 2px 16px rgba(0,0,0,0.25);
}
.nav-logo{display:flex;align-items:center;text-decoration:none}
.nav-logo img{height:48px;width:auto;object-fit:contain}
.nav-links{display:flex;align-items:center;gap:28px;list-style:none}
.nav-links a{font-size:14px;font-weight:500;color:var(--nav-text);opacity:.8;transition:opacity .15s}
.nav-links a:hover{opacity:1}
.nav-right{display:flex;align-items:center;gap:10px}
.btn-nav{
  background:#2d8c4e;color:#fff;
  padding:9px 20px;border-radius:50px;
  font-size:14px;font-weight:700;
  display:inline-flex;align-items:center;gap:7px;
  transition:background .2s,transform .15s;
  white-space:nowrap;border:none;
}
.btn-nav svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.btn-nav:hover{background:#25763f;transform:translateY(-1px)}

/* ── HERO ── */
.hero{
  padding:0;background:#161d17;
  position:relative;overflow:hidden;
  min-height:540px;
}
.hero-bg-img{
  position:absolute;inset:0;
  background:url('/public/banner.png') center center / cover no-repeat;
  z-index:0;
}
.hero-bg-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(
    105deg,
    rgba(22,29,23,1) 0%,
    rgba(22,29,23,0.95) 28%,
    rgba(22,29,23,0.5) 55%,
    rgba(22,29,23,0.05) 100%
  );
}
.hero-inner{
  width:100%;
  display:grid;grid-template-columns:1fr 1fr;
  align-items:center;position:relative;z-index:1;
  min-height:580px;padding:0 32px;
}
.hero-left{
  padding:72px 0 72px;
  display:flex;flex-direction:column;justify-content:center;
}
.hero-right{
  position:relative;display:flex;flex-direction:column;
  align-items:flex-end;justify-content:space-between;
  padding:40px 0 80px;height:100%;min-height:540px;
  overflow:visible;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,143,0,0.15);border:1px solid rgba(255,143,0,0.3);
  color:var(--orange);border-radius:50px;
  padding:5px 14px;font-size:12px;font-weight:600;margin-bottom:20px;
  width:fit-content;align-self:flex-start;
}
.badge-dot{width:7px;height:7px;background:var(--orange);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.85)}}
.hero h1{font-size:clamp(36px,5vw,62px);font-weight:800;color:#fff;line-height:1.15;margin-bottom:18px}
.hero h1 em{font-style:normal;color:var(--orange)}
.hero h1 .ac{color:#81C784}
.hero-sub{font-size:18px;line-height:1.7;color:var(--nav-text);opacity:.85;margin-bottom:24px;max-width:520px}
.hero-checks{display:flex;flex-wrap:wrap;gap:10px 20px;margin-bottom:28px}
.hc{display:flex;align-items:center;gap:8px;font-size:16px;font-weight:500;color:var(--nav-text);opacity:.9}
.hc svg{width:16px;height:16px;stroke:#4ade80;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.hc-full{flex-basis:100%}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px}
.btn-primary{
  background:#2d8c4e;color:#fff;
  padding:15px 32px;border-radius:50px;
  font-size:17px;font-weight:700;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .2s,transform .15s;border:none;
}
.btn-primary svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.btn-primary:hover{background:#25763f;transform:translateY(-1px)}
.btn-wpp{
  background:rgba(255,255,255,0.1);color:#fff;
  border:1.5px solid rgba(255,255,255,0.25);
  padding:15px 28px;border-radius:50px;
  font-size:17px;font-weight:600;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .2s,transform .15s;
}
.btn-wpp svg{width:16px;height:16px;fill:#25d366}
.btn-wpp:hover{background:rgba(255,255,255,0.18);transform:translateY(-1px)}
.social-proof{display:flex;align-items:center;gap:12px}
.sp-avatars{display:flex}
.sp-avatars span{
  width:30px;height:30px;border-radius:50%;
  background:var(--green);color:#fff;
  font-size:11px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  border:2px solid var(--nav-bg);margin-left:-8px;
}
.sp-avatars span:first-child{margin-left:0}
.sp-text{font-size:15px;color:var(--nav-text);opacity:.85;line-height:1.4}
.sp-text strong{color:#fff;display:block}
.stars-sm{color:#F59E0B;font-size:12px;letter-spacing:1px;margin-bottom:2px}
.hero-visual{display:none}
.hero-img-wrap{display:none}
@keyframes float-up{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes float-down{0%,100%{transform:translateY(0)}50%{transform:translateY(8px)}}
.float-card{
  background:rgba(22,29,23,0.85);border-radius:14px;
  padding:12px 16px;
  display:flex;align-items:center;gap:12px;
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  min-width:200px;
  box-shadow:0 8px 32px rgba(0,0,0,0.5);
}
.float-card.top{align-self:flex-end;animation:float-up 3.5s ease-in-out infinite}
.float-card.bot{position:absolute;bottom:40px;right:28%;animation:float-down 4s ease-in-out infinite}
.fc-icon{
  width:38px;height:38px;border-radius:10px;
  background:rgba(45,140,78,0.2);border:1px solid rgba(45,140,78,0.3);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.fc-icon svg{width:18px;height:18px;stroke:#4ade80;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.fc-text strong{font-size:13px;font-weight:700;color:#e8f0e9;display:block}
.fc-text span{font-size:11px;color:#7a9880}



/* ── STATS BAR ── */
.stats-bar{background:#222d24;border-top:1px solid rgba(255,255,255,0.08);border-bottom:1px solid rgba(255,255,255,0.08);padding:0 24px}
.stats-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(5,1fr);padding:20px 0}
.stat{display:flex;align-items:center;gap:12px;padding:0 16px;border-right:1px solid var(--border)}
.stat:last-child{border-right:none}
.stat-icon{width:40px;height:40px;border-radius:10px;background:var(--green-light);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.stat-icon svg{width:20px;height:20px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.stat strong{font-size:20px;font-weight:800;color:var(--green-bright);display:block;line-height:1.1}
.stat span{font-size:12px;color:var(--text2);font-weight:500}

/* ── STATS TICKER mobile ── */
.stats-ticker{display:none;overflow:hidden;background:#222d24;border-top:1px solid rgba(255,255,255,0.08);border-bottom:1px solid rgba(255,255,255,0.08);padding:18px 0}
.ticker-track{display:flex;gap:0;animation:ticker 18s linear infinite;width:max-content}
.ticker-item{display:flex;align-items:center;gap:12px;padding:0 36px;white-space:nowrap;font-size:16px;color:var(--text2);font-weight:600}
.ticker-item svg{width:22px;height:22px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.ticker-item strong{color:var(--green-bright)}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── SEÇÕES ── */
.section{padding:72px 24px}
.section-inner{max-width:1100px;margin:0 auto}
.section-label{font-size:13px;font-weight:700;color:var(--green);text-transform:uppercase;letter-spacing:1.5px;margin-bottom:10px}
.section h2{font-size:clamp(24px,3vw,36px);font-weight:800;color:var(--text);margin-bottom:12px;line-height:1.2}
.sub{font-size:16px;color:var(--text2);margin-bottom:40px;max-width:520px;line-height:1.7}

/* ── COMO FUNCIONA ── */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:40px}
.step{
  background:var(--bg3);border-radius:var(--r);border:1px solid var(--border);
  padding:28px 22px;position:relative;transition:box-shadow .2s,transform .2s;
}
.step:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.step-ico{
  width:48px;height:48px;border-radius:12px;
  background:var(--green-light);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:12px;
}
.step-ico svg{width:24px;height:24px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.step-num{
  font-size:11px;font-weight:800;color:var(--green);
  text-transform:uppercase;letter-spacing:1.5px;margin-bottom:8px;
}
.step h3{font-size:15px;font-weight:700;color:var(--text);margin-bottom:8px}
.step p{font-size:13px;color:var(--text2);line-height:1.6}

/* ── PRODUTOS ── */
.products-section{padding:72px 24px;background:var(--bg3)}
.products-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:32px;flex-wrap:wrap;gap:16px}
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.product-card{
  background:var(--bg3);border-radius:var(--r);border:1px solid var(--border);
  overflow:hidden;transition:box-shadow .2s,transform .2s;display:flex;flex-direction:column;
}
.product-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.product-img{
  height:160px;background:var(--bg3);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.product-img svg{width:52px;height:52px;stroke:var(--green-mid);fill:none;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;opacity:.7}
.product-img img{width:100%;height:100%;object-fit:cover}
.prod-badge{
  position:absolute;top:12px;left:12px;
  font-size:11px;font-weight:700;padding:4px 10px;border-radius:50px;
}
.pb-hot{background:rgba(255,160,0,0.15);color:#FFA000;border:1px solid rgba(255,160,0,0.3)}
.pb-eco{background:rgba(74,222,128,0.12);color:#4ade80;border:1px solid rgba(74,222,128,0.25)}
.pb-fav{background:rgba(239,68,68,0.12);color:#f87171;border:1px solid rgba(239,68,68,0.25)}
.product-body{padding:16px;flex:1;display:flex;flex-direction:column}
.product-body h3{font-size:15px;font-weight:700;color:var(--text);margin-bottom:6px}
.product-body p{font-size:13px;color:var(--text2);line-height:1.5;flex:1;margin-bottom:12px}
.product-footer{display:flex;align-items:center;justify-content:space-between;margin-top:auto}
.product-price{font-size:16px;font-weight:800;color:var(--green-bright)}
.product-price span{font-size:12px;font-weight:400;color:var(--text3)}
.btn-add{
  width:34px;height:34px;border-radius:9px;
  background:var(--green);color:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
  transition:background .15s;flex-shrink:0;
}
.btn-add svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.btn-add:hover{background:var(--green-h)}
.btn-outline{
  display:inline-flex;align-items:center;gap:7px;
  border:1.5px solid var(--green);color:var(--green);
  padding:9px 20px;border-radius:50px;font-size:14px;font-weight:600;
  transition:all .15s;
}
.btn-outline svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.btn-outline:hover{background:var(--green);color:#fff}

/* ── BENEFÍCIOS ── */
.benefits-bar{background:#161d17;padding:48px 24px}
.benefits-bar-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.bbar-item{text-align:center;padding:0 12px}
.bbar-icon{
  width:52px;height:52px;border-radius:14px;
  background:rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 14px;
}
.bbar-icon svg{width:24px;height:24px;stroke:#81C784;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.bbar-item h3{font-size:15px;font-weight:700;color:#fff;margin-bottom:6px}
.bbar-item p{font-size:13px;color:rgba(200,230,201,0.7);line-height:1.6}

/* ── DEPOIMENTOS ── */
.testimonials{padding:72px 24px}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px}
.testi-card{
  background:var(--bg3);border-radius:var(--r);border:1px solid var(--border);
  padding:24px;transition:box-shadow .2s;
}
.testi-card:hover{box-shadow:var(--shadow)}
.testi-stars{display:flex;gap:3px;margin-bottom:12px}
.testi-stars svg{width:16px;height:16px;fill:#F59E0B;stroke:none}
.testi-text{font-size:14px;color:var(--text2);line-height:1.7;margin-bottom:16px;font-style:italic}
.testi-author{display:flex;align-items:center;gap:10px}
.testi-avatar{
  width:36px;height:36px;border-radius:50%;
  background:var(--green);color:#fff;
  font-size:14px;font-weight:700;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.testi-name{font-size:13px;font-weight:700;color:var(--text)}
.testi-loc{font-size:12px;color:var(--text3)}

/* ── CTA FINAL ── */
.cta-section{background:#161d17;padding:72px 24px;border-top:1px solid rgba(255,255,255,0.06)}
.cta-inner{max-width:900px;margin:0 auto;text-align:center}
.cta-inner h2{font-size:clamp(24px,3.5vw,40px);font-weight:800;color:#fff;margin-bottom:16px;line-height:1.25}
.cta-inner p{font-size:16px;color:rgba(200,230,201,0.8);margin-bottom:32px;line-height:1.7}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.btn-white{
  background:#fff;color:var(--nav-bg);
  padding:13px 28px;border-radius:50px;
  font-size:15px;font-weight:700;
  display:inline-flex;align-items:center;gap:8px;
  transition:opacity .15s,transform .15s;border:none;
}
.btn-white svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.btn-white:hover{opacity:.92;transform:translateY(-1px)}
.btn-wpp-outline{
  border:1.5px solid rgba(255,255,255,0.3);color:#fff;
  padding:13px 24px;border-radius:50px;
  font-size:15px;font-weight:600;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .2s,transform .15s;
}
.btn-wpp-outline svg{width:16px;height:16px;fill:#25d366}
.btn-wpp-outline:hover{background:rgba(255,255,255,0.1);transform:translateY(-1px)}

/* ── FOOTER ── */
footer{background:#0f1410;border-top:1px solid rgba(255,255,255,0.06);padding:48px 24px 24px}
.footer-inner{max-width:1100px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1.3fr;gap:40px;margin-bottom:36px}
.footer-brand p{font-size:13px;color:var(--text2);line-height:1.7;margin:12px 0 16px}
.footer-logo{display:flex;align-items:center;text-decoration:none}
.footer-logo img{height:44px;width:auto;object-fit:contain}
.footer-socials{display:flex;gap:10px}
.fsoc{
  width:36px;height:36px;border-radius:9px;
  background:var(--bg3);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  transition:background .15s,border-color .15s;
}
.fsoc svg{width:18px;height:18px;stroke:var(--text2);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.fsoc:hover{background:var(--green-light);border-color:var(--green)}
.fsoc:hover svg{stroke:var(--green)}
.footer-col h3{font-size:13px;font-weight:700;color:var(--text);text-transform:uppercase;letter-spacing:1px;margin-bottom:14px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.footer-col ul li a{font-size:13px;color:var(--text2);transition:color .15s}
.footer-col ul li a:hover{color:var(--green)}
.footer-contact-item{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--text2);margin-bottom:10px}
.footer-contact-item svg{width:15px;height:15px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.footer-bottom{
  border-top:1px solid var(--border);padding-top:20px;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;
}
.footer-bottom p{font-size:12px;color:var(--text3)}
.footer-bottom a{color:var(--text3);text-decoration:underline;transition:color .15s}
.footer-bottom a:hover{color:var(--text)}
.footer-payments{display:flex;gap:8px;align-items:center}
.payment-badge{
  background:var(--bg3);border:1px solid var(--border);
  border-radius:6px;padding:4px 8px;
  display:flex;align-items:center;justify-content:center;
}

/* ── MOBILE BAR ── */
.mobile-bar{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:200;
  background:var(--nav-bg);border-top:1px solid rgba(255,255,255,0.1);
  padding:12px 20px calc(12px + env(safe-area-inset-bottom));
}
.mobile-bar a{
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:var(--orange);color:#fff;
  border-radius:50px;padding:13px;
  font-size:15px;font-weight:700;width:100%;
}
.mobile-bar svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .benefits-bar-inner{grid-template-columns:repeat(2,1fr)}
  .testi-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:24px}
  .hero-inner{grid-template-columns:1fr;gap:0}
  .hero-visual{display:none}
}
@media(max-width:600px){
  nav{padding:0 16px;height:58px}
  .nav-links{display:none}
  .nav-logo img{height:40px}
  .hero{min-height:auto}
  .hero-bg-img::after{background:linear-gradient(180deg,rgba(22,29,23,0.98) 0%,rgba(22,29,23,0.9) 50%,rgba(22,29,23,0.6) 100%)}
  .hero-inner{grid-template-columns:1fr;min-height:auto;padding:0 16px}
  .hero-left{padding:48px 0 20px}
  .hero-right{flex-direction:row;justify-content:flex-start;gap:10px;padding:12px 0 48px;min-height:auto}
  .float-card{min-width:unset;font-size:13px}
  .float-card.top,.float-card.bot{display:none!important}
  .hero h1{font-size:28px}
  .hero-actions{flex-direction:column}
  .btn-primary,.btn-wpp{justify-content:center}
  .stats-bar{display:none}
  .stats-ticker{display:block}
  .section{padding:48px 16px}
  .products-section{padding:48px 16px}
  .steps-grid,.products-grid{grid-template-columns:1fr}
  .benefits-bar{padding:36px 16px}
  .benefits-bar-inner{grid-template-columns:1fr 1fr;gap:16px}
  .testimonials{padding:48px 16px}
  .cta-section{padding:48px 16px}
  .cta-actions{flex-direction:column}
  .btn-white,.btn-wpp-outline{justify-content:center}
  footer{padding:36px 16px 80px}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:10px}
  .mobile-bar{display:block}
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero-inner{animation:fadeUp .6s ease both}

/* ── PRODUCT FEATURES ── */
.product-features{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}
.pf{display:flex;align-items:center;gap:7px;font-size:12px;color:var(--text2)}
.pf svg{width:13px;height:13px;stroke:var(--green-bright);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}

/* ── TESTI TICKER mobile ── */
@media(max-width:600px){
  .testi-ticker-wrap{overflow:hidden;margin:0 -16px;padding:4px 0}
  .testi-ticker-track{display:flex;gap:0;width:max-content;animation:testi-ticker 22s linear infinite;align-items:flex-start}
  .testi-ticker-track:hover{animation-play-state:paused}
  .testi-card{min-width:78vw;max-width:78vw;flex-shrink:0;margin:0 10px;padding:18px;height:auto;align-self:flex-start}
  .testi-text{font-size:13px;line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
}
@keyframes testi-ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── FEIRAS / ONDE NOS ENCONTRAR ── */
.feiras-section{
  padding:72px 24px;
  background:var(--bg2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.feiras-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:40px;
  margin-bottom:28px;
}
.feira-card{
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:box-shadow .2s,transform .2s;
}
.feira-card:hover{
  box-shadow:0 8px 32px rgba(45,140,78,.15);
  transform:translateY(-3px);
}
.feira-dia-badge{
  display:flex;align-items:center;gap:10px;
  padding:14px 20px;
  font-size:15px;font-weight:800;
  letter-spacing:.3px;
}
.feira-dia-badge svg{
  width:18px;height:18px;
  stroke:currentColor;fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
  flex-shrink:0;
}
.feira-terca{
  background:linear-gradient(135deg,#1a4a28,#2d8c4e);
  color:#fff;
}
.feira-sexta{
  background:linear-gradient(135deg,#1a4a28,#2d8c4e);
  color:#fff;
}
.feira-body{
  padding:20px 20px 16px;
  display:flex;flex-direction:column;gap:16px;
  flex:1;
}
.feira-info-row{
  display:flex;align-items:flex-start;gap:12px;
}
.feira-info-icon{
  width:36px;height:36px;border-radius:10px;
  background:var(--green-light);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.feira-info-icon svg{
  width:17px;height:17px;
  stroke:var(--green-bright);fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
}
.feira-rua{font-size:15px;font-weight:700;color:var(--text);line-height:1.3}
.feira-cidade{font-size:12px;color:var(--text2);margin-top:2px}
.feira-ref{
  font-size:12px;color:var(--green-bright);
  margin-top:4px;font-weight:600;
}
.feira-horario-label{font-size:11px;color:var(--text3);font-weight:600;text-transform:uppercase;letter-spacing:.8px}
.feira-horario{font-size:14px;font-weight:600;color:var(--text);margin-top:2px}
.feira-btn-maps{
  display:flex;align-items:center;justify-content:center;gap:8px;
  margin:0 20px 20px;
  padding:13px;
  background:var(--bg4);
  border:1.5px solid var(--border2);
  border-radius:12px;
  font-size:14px;font-weight:700;color:var(--text);
  transition:background .2s,border-color .2s,color .2s,transform .15s;
  text-decoration:none;
}
.feira-btn-maps svg{
  width:16px;height:16px;
  stroke:var(--green-bright);fill:none;
  stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;
}
.feira-btn-maps:hover{
  background:var(--green);
  border-color:var(--green);
  color:#fff;
  transform:translateY(-1px);
}
.feira-btn-maps:hover svg{stroke:#fff}
.feiras-cta{
  display:flex;align-items:center;gap:14px;
  flex-wrap:wrap;
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px 22px;
  margin-top:8px;
}
.feiras-cta p{
  flex:1;min-width:200px;
  font-size:14px;color:var(--text2);
  line-height:1.5;
}
.feiras-cta p strong{color:var(--text)}
.btn-entregas-link{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 22px;
  border:1.5px solid var(--border2);
  border-radius:50px;
  font-size:13px;font-weight:700;color:var(--text2);
  transition:border-color .2s,color .2s;
  white-space:nowrap;
}
.btn-entregas-link svg{
  width:15px;height:15px;
  stroke:currentColor;fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;
}
.btn-entregas-link:hover{border-color:var(--green);color:var(--green-bright)}
@media(max-width:900px){
  .feiras-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .feiras-section{padding:48px 16px}
  .feiras-cta{flex-direction:column;align-items:flex-start;gap:12px}
  .btn-entregas-link{width:100%;justify-content:center}
  .feiras-cta .btn-outline{width:100%;justify-content:center}
}

/* ── ADICIONAR /entregas AO NAV ── */
/* (o link é adicionado via HTML) */
