:root{
  --primary:#0b4ea2;
  --primary-dark:#062e63;
  --secondary:#7cc63d;
  --secondary-dark:#5aa620;
  --text:#182033;
  --muted:#66738a;
  --bg:#f4f7fb;
  --line:#dce7f6;
  --white:#fff;
  --shadow:0 18px 40px rgba(15,37,82,.10);
  --radius:24px;
  --radius-sm:18px;
  --container:min(1180px, calc(100% - 32px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,Helvetica,sans-serif;color:var(--text);background:var(--bg)}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input{font:inherit}
.container{width:var(--container);margin:0 auto}

.section{padding:84px 0}
.section-small{padding:64px 0}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.section-head h2{
  margin:0;
  font-size:clamp(2rem,2.8vw,2.8rem);
  line-height:1.08;
}

.section-head p{
  margin:10px 0 0;
  color:var(--muted);
  max-width:680px;
  line-height:1.7;
}

.topbar{
  background:linear-gradient(90deg,var(--primary-dark),var(--primary));
  color:#eef5ff;
  font-size:.92rem;
}

.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:10px 0;
  flex-wrap:wrap;
}

.topbar-group{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.navbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(11,78,162,.08);
}

.navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.brand img{
  width:220px;
  max-width:min(42vw,220px);
}

.nav-menu{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.nav-menu a{
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  color:var(--primary-dark);
}

.nav-menu a.active,
.nav-menu a:hover{
  background:rgba(11,78,162,.08);
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  border-radius:999px;
  padding:14px 24px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
  white-space:nowrap;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  background:linear-gradient(90deg,var(--secondary),#9dd94f);
  color:#16380c;
  box-shadow:0 12px 28px rgba(124,198,61,.28);
}

.btn-secondary{
  background:linear-gradient(90deg,var(--primary),#1f69cb);
  color:#fff;
  box-shadow:0 12px 28px rgba(11,78,162,.24);
}

.btn-outline{
  background:#fff;
  border:1px solid rgba(11,78,162,.18);
  color:var(--primary);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(124,198,61,.12);
  color:#2c6c10;
  font-weight:800;
  font-size:.94rem;
}

.hero{
  padding:52px 0;
  background:
    radial-gradient(circle at left top, rgba(124,198,61,.12), transparent 26%),
    radial-gradient(circle at right top, rgba(11,78,162,.12), transparent 26%),
    linear-gradient(180deg,#fff 0%,#f4f7fb 100%);
}

.hero.hero-bg{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    url("../img/hero-top.jpg") center center / cover no-repeat;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  align-items:center;
}

.hero-copy{
  position:relative;
  z-index:2;
}

.hero-copy-single{
  max-width:620px;
  padding:64px 0;
}

.hero-copy h1{
  margin:16px 0 18px;
  font-size:clamp(2.7rem,5vw,4.9rem);
  line-height:.98;
  letter-spacing:-.03em;
}

.hero-copy h1 span{color:var(--secondary-dark)}

.hero-copy p{
  margin:0 0 26px;
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.8;
  max-width:640px;
}

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

.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}

.point{
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--shadow);
}

.point strong{
  display:block;
  color:var(--primary-dark);
  margin-bottom:8px;
  font-size:1.03rem;
}

.point span{
  color:var(--muted);
  line-height:1.6;
  font-size:.95rem;
}

.hero-visual{display:none}
.hero-image{display:none}
.hero-card-note{display:none}

.card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.info-card,
.about-panel,
.contact-card,
.cta-box,
.feature-card,
.product-card,
.cart-box,
.detail-box,
.summary-card,
.store-widget{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.info-card{padding:24px}

.icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,rgba(11,78,162,.10),rgba(124,198,61,.12));
  margin-bottom:14px;
}

.icon svg{
  width:28px;
  height:28px;
  fill:var(--primary);
}

.info-card h3,
.about-panel h3,
.contact-card h3,
.cta-box h3,
.detail-box h1{
  margin:0 0 10px;
}

.info-card p,
.about-panel p,
.contact-card p,
.cta-box p,
.detail-box p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

/* QUEM SOMOS */
.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:stretch;
}

.about-panel{
  padding:34px;
}

.about-visual{
  padding:0 !important;
  overflow:hidden;
  position:relative;
  min-height:650px;
}

.about-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:24px;
  max-width:none;
}

.bullet-list{
  display:grid;
  gap:12px;
  margin:22px 0 0;
  padding:0;
  list-style:none;
}

.bullet-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--muted);
}

.bullet-list i{
  display:inline-grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:999px;
  background:rgba(124,198,61,.18);
  color:#2c6c10;
  font-style:normal;
  font-weight:800;
  flex:0 0 22px;
  margin-top:2px;
}

.cta-box{
  padding:34px;
  background:linear-gradient(135deg,var(--primary),#1f69cb);
  color:#fff;
}

.cta-box h3{font-size:clamp(1.6rem,2.5vw,2.2rem)}

.cta-box p{
  color:#dbe9ff;
  max-width:780px;
}

/* PRODUTOS */
.products-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(260px,1fr));
  gap:24px;
}

.product-card{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:16px;
  min-width:0;
}

.product-media{
  border-radius:22px;
  background:linear-gradient(180deg,#f8fbff,#eef4fb);
  border:1px solid var(--line);
  height:290px;
  overflow:hidden;
  padding:0;
  position:relative;
}

.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:drop-shadow(0 14px 22px rgba(0,0,0,.10));
  max-width:none;
}

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

.product-top{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:14px;
  align-items:start;
  min-height:auto;
}

.product-category{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(124,198,61,.14);
  color:#4e861c;
  font-size:.82rem;
  font-weight:800;
  margin-bottom:10px;
  width:max-content;
  max-width:100%;
}

.product-title{
  margin:0;
  font-size:1.5rem;
  line-height:1.15;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:3.5rem;
  word-break:break-word;
}

.product-price{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-width:0;
  text-align:left;
  color:var(--primary-dark);
  font-weight:900;
  font-size:1.25rem;
  line-height:1.05;
}

.product-price small{
  display:block;
  font-size:.86rem;
  color:var(--muted);
  font-weight:700;
  margin-top:6px;
}

.product-desc{
  color:var(--muted);
  line-height:1.7;
  font-size:1rem;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:5.1em;
}

.product-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:auto;
}

.product-actions .btn{padding:12px 20px}
.center{text-align:center}

.category-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}

.category-chip{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(11,78,162,.15);
  background:#fff;
  font-weight:800;
  color:var(--primary-dark);
  cursor:pointer;
  transition:.2s;
}

.category-chip.active,
.category-chip:hover{
  background:linear-gradient(90deg,var(--primary),#1f69cb);
  border-color:transparent;
  color:#fff;
  box-shadow:0 12px 28px rgba(11,78,162,.18);
}

.store-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:26px;
}

.store-toolbar p{
  margin:0;
  color:var(--muted);
}

/* LOJA COM SIDEBAR */
.store-layout{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:24px;
  align-items:start;
}

.store-sidebar{
  position:sticky;
  top:110px;
}

.store-widget{
  padding:22px;
}

.store-widget h3{
  margin:0 0 14px;
  font-size:2rem;
  color:var(--text);
}

.store-widget p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.5;
}

.store-widget-cats{
  display:grid;
  gap:12px;
}

.store-widget-cats .category-chip{
  width:100%;
  justify-content:center;
  display:inline-flex;
}

.store-widget-cart{
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid var(--line);
}

.store-widget-cart h4{
  margin:0 0 10px;
  font-size:1.1rem;
  color:var(--text);
}

.store-widget-cart p{
  margin:0 0 16px;
}

.store-widget-cart .btn{
  width:100%;
}

.store-main{
  min-width:0;
}

.notice{
  padding:16px 18px;
  border-radius:18px;
  background:#fff9df;
  border:1px solid #f0e2a4;
  color:#7a6208;
  line-height:1.6;
}

.cart-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
}

.cart-box{padding:26px}

.cart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.cart-list{
  display:grid;
  gap:16px;
}

.cart-item{
  display:grid;
  grid-template-columns:108px 1fr auto;
  gap:18px;
  align-items:center;
  padding:16px;
  border-radius:20px;
  background:#f8fbff;
  border:1px solid var(--line);
}

.cart-thumb{
  width:108px;
  height:108px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}

.cart-thumb img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.cart-name{
  margin:0 0 8px;
  font-size:1.15rem;
  line-height:1.25;
}

.cart-meta{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
}

.qty-controls{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  overflow:hidden;
  background:#fff;
  margin-top:10px;
}

.qty-btn{
  width:42px;
  height:42px;
  border:none;
  background:#fff;
  color:var(--primary-dark);
  font-size:1.35rem;
  font-weight:800;
  cursor:pointer;
}

.qty-input{
  width:54px;
  height:42px;
  border:none;
  text-align:center;
  background:#fff;
  color:var(--text);
  font-weight:800;
}

.cart-aside{
  display:grid;
  gap:18px;
  align-content:start;
}

.summary-card{padding:24px}

.summary-line{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px dashed var(--line);
  color:var(--muted);
}

.summary-line.total{
  font-size:1.25rem;
  font-weight:900;
  color:var(--primary-dark);
  border-bottom:none;
  padding-top:18px;
}

.empty-state{
  padding:24px;
  border:1px dashed rgba(11,78,162,.2);
  border-radius:22px;
  background:#fff;
  text-align:center;
  color:var(--muted);
  line-height:1.7;
}

.map-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
}

.contact-stack{
  display:grid;
  gap:16px;
}

.contact-card{padding:22px}

.map-frame{
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-height:420px;
  background:#fff;
}

.map-frame iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
}

.footer{
  background:linear-gradient(180deg,#05234c,#031730);
  color:#e5efff;
  margin-top:40px;
}

.footer-top{
  display:grid;
  grid-template-columns:1.15fr .7fr .9fr .9fr;
  gap:28px;
  padding:48px 0;
}

.footer-brand img{
  width:230px;
  margin-bottom:18px;
}

.footer p,
.footer li,
.footer a{
  color:#d7e6ff;
  line-height:1.8;
}

.footer h4{
  margin:0 0 16px;
  font-size:1.32rem;
  color:#fff;
}

.footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.10);
  padding:18px 0;
  color:#bfd3f3;
}

.pay-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}

.pay-grid img{
  width:100%;
  height:72px;
  object-fit:cover;
  border-radius:16px;
}

.breadcrumb{
  display:inline-flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--muted);
  font-weight:700;
  margin-bottom:12px;
}

.page-hero{
  padding:44px 0 24px;
}

.page-hero h1{
  margin:0;
  font-size:clamp(2.4rem,4vw,4rem);
}

.page-hero p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.75;
  max-width:820px;
}

.detail-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:32px;
  align-items:start;
}

.detail-media{padding:22px}

.detail-media .product-media{height:560px}

.detail-box{padding:34px}

.detail-price{
  font-size:2.7rem;
  font-weight:900;
  color:var(--primary-dark);
  line-height:1;
  margin:20px 0 6px;
}

.detail-price small{
  display:block;
  font-size:.95rem;
  color:var(--muted);
  margin-top:6px;
}

.feature-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin:24px 0;
  padding:0;
  list-style:none;
}

.feature-list li{
  padding:14px 16px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid var(--line);
  color:var(--muted);
  line-height:1.6;
}

.detail-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:24px;
}

.inline-qty{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  overflow:hidden;
  background:#fff;
}

.inline-qty button{
  width:44px;
  height:44px;
  border:none;
  background:#fff;
  font-size:1.35rem;
  font-weight:800;
  color:var(--primary-dark);
  cursor:pointer;
}

.inline-qty input{
  width:56px;
  height:44px;
  border:none;
  text-align:center;
  font-weight:800;
}

.muted-link{
  color:var(--primary);
  font-weight:800;
}

.hide{display:none !important}
.mobile-cart{display:none}

@media (max-width: 1080px){
  .about-grid,
  .map-grid,
  .detail-grid,
  .cart-layout{
    grid-template-columns:1fr;
  }

  .card-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:repeat(2,1fr)}

  .hero.hero-bg{
    min-height:auto;
    padding:70px 0;
    background-position:center center;
  }

  .hero-copy-single{
    max-width:100%;
    padding:32px 0;
  }

  .about-visual{
    min-height:420px;
  }
}

@media (max-width: 980px){
  .store-layout{
    grid-template-columns:1fr;
  }

  .store-sidebar{
    position:static;
  }
}

@media (max-width: 860px){
  .nav-menu{display:none}
  .navbar .container{padding:12px 0}
  .hero-points,
  .products-grid,
  .feature-list{
    grid-template-columns:1fr;
  }

  .product-top{
    grid-template-columns:1fr;
  }

  .product-price{
    text-align:left;
    align-items:flex-start;
  }

  .store-toolbar{align-items:flex-start}
  .cart-item{grid-template-columns:1fr;justify-items:start}
  .cart-thumb{width:96px;height:96px}
  .footer-top{grid-template-columns:1fr}

  .mobile-cart{
    display:flex;
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;
    z-index:15;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    padding:12px;
    justify-content:space-between;
    align-items:center;
    gap:12px;
  }

  body.has-mobile-cart{padding-bottom:92px}
}

@media (max-width: 560px){
  .container{width:min(100% - 20px, 1180px)}
  .section{padding:68px 0}
  .topbar .container,
  .nav-actions{gap:10px}
  .btn{width:100%}
  .hero-copy h1{font-size:2.5rem}
  .hero-actions,
  .product-actions,
  .detail-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-points,
  .card-grid{
    grid-template-columns:1fr;
  }

  .product-media{height:250px}
  .detail-media .product-media{height:360px}

  .hero.hero-bg{
    padding:56px 0;
    background-position:center center;
  }

  .hero-copy-single{
    padding:10px 0;
  }

  .about-visual{
    min-height:320px;
  }
}

.contact-map-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

.whats-form-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}

.whats-form-box h2{
  margin:0 0 10px;
  font-size:clamp(2rem,3vw,3rem);
  color:var(--primary-dark);
}

.whats-form-box p{
  margin:0 0 24px;
  color:var(--muted);
  line-height:1.6;
}

.whats-form{
  display:grid;
  gap:16px;
}

.whats-form label{
  font-weight:800;
  color:var(--text);
  margin-bottom:-6px;
}

.whats-form input,
.whats-form textarea{
  width:100%;
  border:1px solid #d7dfe9;
  border-radius:18px;
  padding:16px 18px;
  background:#fff;
  color:var(--text);
  outline:none;
}

.whats-form input:focus,
.whats-form textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(11,78,162,.08);
}

.btn-whats-form{
  border:none;
  border-radius:999px;
  padding:16px 24px;
  font-weight:800;
  cursor:pointer;
  background:#09b26b;
  color:#fff;
  box-shadow:0 12px 28px rgba(9,178,107,.22);
  transition:.2s ease;
}

.btn-whats-form:hover{
  transform:translateY(-2px);
}

.seal-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.seal-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:72px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  text-align:center;
  padding:12px;
}

@media (max-width: 900px){
  .contact-map-layout{
    grid-template-columns:1fr;
  }
}


.store-filters{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr auto;
  gap:14px;
  margin-bottom:18px;
  align-items:end;
}

.filter-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.filter-group label{
  font-size:.95rem;
  font-weight:800;
  color:var(--primary-dark);
}

.filter-group input,
.filter-group select{
  width:100%;
  height:52px;
  border:1px solid var(--line);
  border-radius:16px;
  padding:0 16px;
  background:#fff;
  color:var(--text);
  outline:none;
}

.filter-group input:focus,
.filter-group select:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(11,78,162,.08);
}

.filter-action .btn{
  height:52px;
}

.store-results-count{
  margin-bottom:18px;
  color:var(--muted);
  font-weight:700;
}

@media (max-width: 1200px){
  .store-filters{
    grid-template-columns:1fr 1fr;
  }

  .filter-search{
    grid-column:1 / -1;
  }
}

@media (max-width: 680px){
  .store-filters{
    grid-template-columns:1fr;
  }
}