:root{
  --green-dark:#0f3a19;
  --green-main:#1f7a34;
  --green-light:#39b54a;
  --green-soft:#e8f5ec;
  --white:#ffffff;
  --black:#0b140e;
}

*{ box-sizing:border-box; }
body{ margin:0; }
html, body{ overflow-x:hidden; }

.sc-landing{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: var(--black);
  background: var(--white);
}

/* =========================================================
   FULL WIDTH (corrige o container do Astra só nessa landing)
   ========================================================= */
.page .site-content .ast-container:has(.sc-landing){
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.sc-landing{ width:100%; margin:0; }

/* Hide WP/Astra title */
.entry-title,
.page-title,
.ast-page-title{
  display:none !important;
}

/* ================= HERO ================= */
.sc-hero{
  min-height: 90vh;
  padding: 40px 24px 80px;
  background:
    linear-gradient(90deg, rgba(15,58,25,.92), rgba(15,58,25,.70)),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  color:#fff;
}

.sc-topbar{
  max-width: 1220px;
  margin: 0 auto 54px;
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}

.sc-brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:900;
  color:#fff;
  text-decoration:none;
}

.sc-brand__logo{
  width: 86px;
  height:auto;
}

.sc-nav{
  display:flex;
  gap:22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}
.sc-nav a{
  color:#fff;
  font-weight:800;
  opacity:.92;
  text-decoration:none;
}
.sc-nav a:hover{ opacity:1; }

.sc-topbar__actions{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Conteúdo hero */
.sc-hero__content{
  max-width: 1220px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.sc-eyebrow{
  display:inline-block;
  background: var(--green-light);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  margin:0 0 16px;
}

.sc-title{
  color:#fff;
  font-weight:900;
  line-height:1.05;
  font-size: clamp(40px, 5vw, 64px);
  text-shadow:
    0 3px 12px rgba(0,0,0,.45),
    0 8px 32px rgba(0,0,0,.55);
  margin:0 0 12px;
}
.sc-title span{
  display:block;
  font-size:.45em;
  opacity:.95;
  font-weight:800;
}

.sc-subtitle{
  font-size:18px;
  max-width:520px;
  margin:0 0 26px;
  opacity:.95;
}

.sc-hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Botões */
.sc-btn{
  padding:14px 22px;
  border-radius:10px;
  font-weight:900;
  text-decoration:none;
  display:inline-block;
}

.sc-btn--primary{
  background: var(--green-light);
  color:#fff;
}
.sc-btn--primary:hover{ background:#2fa043; }

.sc-btn--ghost{
  border:2px solid #fff;
  color:#fff;
  background: transparent;
}

/* Volver arriba visível */
.sc-to-top{
  color:#fff !important;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.55) !important;
}
.sc-to-top:hover{ background: rgba(255,255,255,.18); }

/* Card do saco */
.sc-photo-card{
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 18px;
  box-shadow: 0 26px 80px rgba(0,0,0,.35);
}

.sc-bag{
  width:100%;
  max-width:420px;
  display:block;
  margin:0 auto;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.45));
}

/* Badges */
.sc-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.sc-badge{
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-weight:700;
  font-size:13px;
}

/* ================= SECTIONS ================= */
.sc-section{ padding:72px 24px; }
.sc-section--alt{ background: var(--green-soft); }

.sc-container{
  max-width: 1220px;
  margin:0 auto;
}

.sc-section__head{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.sc-h2{
  font-size:36px;
  margin:0 0 6px;
  color:#0b2a14;
}
.sc-h3{ font-size:22px; margin:0 0 10px; }
.sc-p{ font-size:16px; max-width:780px; margin:0; opacity:.95; }

/* ================= PRODUCTOS ================= */
.sc-products{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
  margin-top:26px;
}

.sc-product{
  background:#fff;
  border-radius:16px;
  padding:22px;
  border:1px solid #dfeee3;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* THUMB PADRONIZADO (maior + sempre igual) */
.sc-product__thumb{
  width: 112px;
  height: 112px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6efe8;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.sc-product__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* padroniza mesmo se vier maior/menor */
  object-position: center;
  display:block;
  transform: scale(1.05); /* dá “presença” sem estourar */
}

.sc-product__name{
  font-weight:900;
  margin-top:4px;
  font-size: 16px;
}

.sc-product__meta{
  font-size:13px;
  opacity:.8;
}

.sc-product__cta{
  margin-top:auto;
  display:inline-block;
  font-weight:900;
  color:var(--green-main);
  text-decoration:none;
  padding-top: 6px;
}

/* ================= NOSOTROS (mais organizado, menos vazio) ================= */
.sc-nosotros{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items:start;
}

.sc-features{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.sc-feature{
  display:flex;
  gap:12px;
  background:#fff;
  border-radius:16px;
  padding:16px 18px;
  border:1px solid #dfeee3;
}
.sc-feature__icon{ font-size:20px; margin-top:2px; }
.sc-feature p{ margin:3px 0 0; font-size:14px; opacity:.9; }

.sc-card{
  background:#fff;
  border-radius:16px;
  padding:18px 18px;
  border:1px solid #dfeee3;
}

.sc-mini{ margin-top:8px; display:grid; gap:10px; }
.sc-mini__row{ display:flex; justify-content:space-between; gap:12px; }
.sc-mini__label{ font-weight:800; opacity:.85; }
.sc-mini__value{ font-weight:800; color:#0b2a14; text-decoration:none; }
.sc-mini__value:hover{ text-decoration:underline; }

.sc-callout{
  margin-top:14px;
  border-radius:14px;
  background: var(--green-soft);
  padding:14px;
  border: 1px solid #dfeee3;
}
.sc-callout__title{ font-weight:900; margin-bottom:4px; }
.sc-callout__value{ opacity:.9; margin-bottom:10px; }
.sc-callout__btn{ width:100%; text-align:center; }

/* ================= CONTACTO ================= */
.sc-contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}

.sc-contact__row{
  padding:14px 18px;
  border-radius:12px;
  background: var(--green-soft);
  margin-bottom:10px;
  border: 1px solid #dfeee3;
}

.sc-contact__actions{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:14px;
}

.sc-contact__card{
  background:#fff;
  border:1px solid #dfeee3;
  border-radius:16px;
  padding:18px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.sc-contact__badge{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: var(--green-soft);
  border:1px solid #dfeee3;
}

/* Footer */
.sc-footer{
  background: var(--green-dark);
  color:#fff;
  padding:34px 24px;
}
.sc-footer__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:center;
}
.sc-footer__brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.sc-footer__brand img{
  width:44px;
  background:#fff;
  padding:6px;
  border-radius:10px;
}
.sc-footer__brand span{ display:block; opacity:.9; font-weight:700; font-size:13px; }
.sc-footer__links{
  display:flex;
  gap:14px;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.sc-footer__links a{ color:#fff; text-decoration:none; opacity:.9; font-weight:800; }
.sc-footer__links a:hover{ opacity:1; text-decoration:underline; }
.sc-footer__copy{
  grid-column: 1 / -1;
  opacity:.85;
  font-size:13px;
}

/* WhatsApp floating */
.sc-wa-float{
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 9999;
  background: var(--green-light);
  color:#fff;
  border-radius: 999px;
  padding: 12px 14px;
  display:flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  font-weight:900;
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
}
.sc-wa-float:hover{ background:#2fa043; }
.sc-wa-float__icon{ font-size:18px; }
.sc-wa-float__text{ font-size:14px; }

/* Responsive */
@media (max-width:900px){
  .sc-hero__content{ grid-template-columns:1fr; }
  .sc-contact{ grid-template-columns:1fr; }
  .sc-nosotros{ grid-template-columns:1fr; }
  .sc-footer__inner{ grid-template-columns:1fr; }
  .sc-footer__links{ justify-content:flex-start; }

  .sc-topbar{
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    text-align:center;
  }
  .sc-nav{
    width: 100%;
    justify-content: center;
  }
}
@media (max-width:520px){
  .sc-hide-mobile{ display:none; }
}
