:root {
  --red:#e30613;
  --red-dark:#b9000b;
  --green:#1f6a3b;
  --green-dark:#0d3b25;
  --yellow:#f4b63f;
  --soil:#7a5a36;
  --ink:#172018;
  --muted:#667065;
  --cream:#f7f5ed;
  --soft:#f8f7f1;
  --line:#e7e2d5;
  --white:#fff;
  --shadow:0 18px 45px rgba(23,32,24,.12);
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff 0%, #fbfaf6 42%, var(--cream) 100%);
  overflow-x:hidden;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
button, input, textarea { font:inherit; }
.container {
  width:100%;
  max-width:1480px;
  margin:0 auto;
  padding-inline:clamp(16px, 2.2vw, 32px);
}
.topbar { background:var(--green-dark); color:#f8fff8; font-size:13px; }
.topbar .container { min-height:38px; display:flex; justify-content:space-between; align-items:center; gap:18px; }
.topbar strong { color:#fff; }
.topbar .left, .topbar .right { display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
.dot { width:6px; height:6px; border-radius:99px; background:var(--yellow); display:inline-block; margin-right:7px; }
.nav {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(231,226,213,.85);
}
.nav .container { height:78px; display:flex; align-items:center; justify-content:space-between; gap:24px; min-width:0; }
.brand { display:flex; align-items:center; min-width:170px; }
.brand img { width:136px; height:auto; object-fit:contain; }
.navlinks { display:flex; gap:24px; align-items:center; color:#29332c; font-weight:750; font-size:15px; }
.navlinks a { position:relative; }
.navlinks a:after { content:""; position:absolute; left:0; right:100%; bottom:-8px; height:3px; background:var(--red); border-radius:10px; transition:.25s; }
.navlinks a:hover:after, .navlinks a.active:after { right:0; }
.btn {
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:999px;
  padding:13px 19px;
  font-weight:850;
  font-size:14px;
  line-height:1;
  transition:.22s ease;
  white-space:nowrap;
}
.btn:hover { transform:translateY(-2px); }
.btn.primary { background:var(--red); color:#fff; box-shadow:0 10px 24px rgba(227,6,19,.22); }
.btn.primary:hover { background:var(--red-dark); }
.btn.secondary { background:#fff; color:var(--green-dark); border:1px solid var(--line); }
.btn.green, .btn.whatsapp { background:#1dbb61; color:#fff; }
.btn.dark { background:var(--green-dark); color:#fff; }
.btn.ghost { background:#fff; color:var(--ink); border:1px solid var(--line); }
.btn.small { padding:10px 13px; font-size:13px; }
.hero { padding:34px 0 46px; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(360px,.82fr); align-items:center; gap:34px; }
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--green-dark);
  background:#eaf3df;
  padding:8px 12px;
  border-radius:999px;
  font-weight:850;
  font-size:13px;
  margin-bottom:18px;
}
h1 { font-size:clamp(36px, 4.8vw, 64px); line-height:.98; letter-spacing:-.04em; margin:0 0 18px; max-width:850px; }
h1 span { color:var(--green); }
.hero p, .lead { font-size:17px; color:#536052; line-height:1.65; max-width:680px; margin:0 0 24px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:0; }
.trust-row { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:650px; }
.trust-item { background:#fff; border:1px solid var(--line); border-radius:18px; padding:16px; box-shadow:0 14px 35px rgba(23,32,24,.06); }
.trust-item strong { display:block; color:var(--red); font-size:22px; margin-bottom:4px; }
.trust-item span { color:var(--muted); font-size:13px; font-weight:750; }
.hero-photo {
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:16 / 10;
  max-height:430px;
  box-shadow:0 18px 42px rgba(23,32,24,.12);
  border:8px solid #fff;
  background:#ddd;
}
.hero-photo img { width:100%; height:100%; object-fit:cover; }
.section { padding:54px 0; }
.compact-section { padding-top:18px; padding-bottom:24px; }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:20px; margin-bottom:28px; }
.section-kicker { color:var(--red); font-weight:950; text-transform:uppercase; font-size:12px; letter-spacing:.14em; margin-bottom:10px; }
.section h2 { font-size:clamp(28px,3.2vw,42px); line-height:1.08; letter-spacing:-.03em; margin:0; max-width:760px; }
.section-head p { max-width:520px; color:var(--muted); line-height:1.6; margin:0; }
.info-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.info-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
  box-shadow:0 10px 26px rgba(23,32,24,.06);
}
.info-card span {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:999px;
  background:#eef5e9;
  color:var(--green-dark);
  font-size:12px;
  font-weight:950;
  margin-bottom:12px;
}
.info-card h3 { margin:0 0 7px; font-size:18px; letter-spacing:-.02em; }
.info-card p { margin:0; color:var(--muted); line-height:1.55; font-size:14px; }
.category-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.category-card {
  aspect-ratio:16 / 10;
  min-height:0;
  border-radius:14px;
  overflow:hidden;
  position:relative;
  background:#ddd;
  box-shadow:0 10px 26px rgba(23,32,24,.10);
}
.category-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:.35s ease; }
.category-card:hover img { transform:scale(1.05); }
.category-card:after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(13,59,37,.72)); }
.category-content { position:absolute; z-index:1; inset:auto 18px 18px 18px; color:#fff; }
.category-content span { font-size:11px; font-weight:950; background:rgba(227,6,19,.94); padding:6px 9px; border-radius:999px; }
.category-content h3 { font-size:21px; margin:13px 0 6px; line-height:1.15; }
.category-content p { margin:0; color:rgba(255,255,255,.86); line-height:1.42; font-size:13px; }
.split-bands { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:18px; }
.band { border-radius:18px; padding:26px; min-height:220px; color:#fff; background:linear-gradient(135deg,var(--green-dark),var(--green)); display:flex; flex-direction:column; justify-content:space-between; overflow:hidden; position:relative; }
.band.alt { background:linear-gradient(135deg,#21271f,#704b24); }
.band h3 { margin:0 0 10px; font-size:28px; letter-spacing:-.03em; }
.band p { color:rgba(255,255,255,.82); line-height:1.6; max-width:640px; margin-bottom:22px; }
.feature-band { border-radius:24px; padding:30px; min-height:360px; }
.feature-band:before {
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:999px;
  right:-52px;
  top:-54px;
  background:rgba(255,255,255,.09);
}
.feature-band > * { position:relative; z-index:1; }
.band-kicker { color:var(--yellow); font-weight:950; text-transform:uppercase; letter-spacing:.14em; font-size:12px; margin-bottom:16px; }
.feature-band h3 { font-size:clamp(28px,3vw,36px); line-height:1.22; max-width:640px; }
.tick-list { display:grid; gap:10px; margin:20px 0 24px; }
.tick { display:flex; align-items:flex-start; gap:10px; color:#fff; font-weight:800; line-height:1.35; }
.tick i { width:22px; height:22px; border-radius:999px; background:var(--yellow); color:var(--green-dark); display:inline-flex; align-items:center; justify-content:center; font-style:normal; font-weight:950; flex:none; }
.catalog-wrap { background:#fff; border:1px solid var(--line); border-radius:22px; padding:16px; box-shadow:0 18px 46px rgba(23,32,24,.07); }
.catalog-toolbar { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding:12px 10px 22px; }
.searchbox { flex:1; min-width:245px; display:flex; align-items:center; gap:10px; background:var(--soft); border:1px solid var(--line); border-radius:999px; padding:0 16px; color:#717b70; }
.searchbox input { width:100%; border:0; outline:0; background:transparent; padding:14px 0; color:var(--ink); }
.toolbar-count { color:var(--green-dark); font-weight:900; white-space:nowrap; }
.filter-panel { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:14px; padding:0 10px 18px; }
.filter-group { display:grid; gap:9px; }
.filter-label { color:var(--muted); font-size:12px; font-weight:950; text-transform:uppercase; letter-spacing:.12em; }
.chips { display:flex; flex-wrap:wrap; gap:8px; }
.chip { border:1px solid var(--line); cursor:pointer; padding:10px 13px; background:var(--soft); border-radius:999px; color:#485249; font-weight:850; font-size:13px; transition:.2s ease; }
.chip.active { background:var(--green); color:#fff; border-color:var(--green); }
.catalog-layout { display:grid; grid-template-columns:250px minmax(0,1fr); gap:18px; }
.sidebar { background:var(--soft); border:1px solid var(--line); border-radius:22px; padding:20px; align-self:start; position:sticky; top:104px; }
.sidebar h3 { margin:0 0 14px; font-size:18px; }
.filter-list { display:grid; gap:10px; }
.filter-list button { display:flex; justify-content:space-between; gap:10px; width:100%; border:0; border-bottom:1px dashed #d8d2c3; background:transparent; color:#4a554b; padding:0 0 10px; font-weight:750; cursor:pointer; text-align:left; }
.filter-list button:last-child { border-bottom:0; padding-bottom:0; }
.filter-list span { color:var(--red); font-weight:950; }
.service-help { margin-top:22px; padding:16px; background:var(--green-dark); color:#fff; border-radius:18px; }
.service-help strong { display:block; font-size:16px; margin-bottom:8px; }
.service-help p { margin:0 0 14px; font-size:13px; line-height:1.5; color:rgba(255,255,255,.78); }
.products-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; align-items:stretch; }
.product-card { background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; transition:.22s ease; display:flex; flex-direction:column; min-width:0; }
.product-card:hover { transform:translateY(-4px); box-shadow:0 18px 45px rgba(23,32,24,.11); }
.product-img { aspect-ratio:4 / 3; background:linear-gradient(135deg,#f7f8f3,#eee7d5); overflow:hidden; position:relative; display:grid; place-items:center; }
.product-img:before { content:""; position:absolute; inset:auto 0 0; height:38%; background:linear-gradient(180deg, transparent, rgba(13,59,37,.08)); }
.product-img img { width:100%; height:100%; object-fit:contain; padding:13px; position:relative; z-index:2; }
.product-img img.fallback-photo { object-fit:cover; padding:0; filter:saturate(.96); }
.image-note { position:absolute; left:10px; bottom:10px; z-index:3; max-width:calc(100% - 20px); background:rgba(255,255,255,.92); border:1px solid rgba(231,226,213,.9); color:var(--green-dark); border-radius:999px; padding:5px 8px; font-size:10px; font-weight:850; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; box-shadow:0 8px 18px rgba(23,32,24,.08); }
.product-body { padding:15px; display:flex; flex-direction:column; flex:1; }
.product-meta { display:flex; justify-content:space-between; gap:10px; align-items:center; margin-bottom:10px; }
.product-meta span { color:var(--green); font-size:12px; font-weight:950; text-transform:uppercase; letter-spacing:.08em; }
.product-meta strong { color:var(--red); font-size:12px; white-space:nowrap; }
.product-body h3 { margin:0 0 10px; font-size:18px; line-height:1.2; overflow-wrap:anywhere; }
.spec-row { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:12px; }
.spec-chip { background:#f2f6ed; color:var(--green-dark); border:1px solid #dfe8d5; border-radius:999px; padding:7px 9px; font-size:12px; font-weight:850; }
.product-body p { margin:0 0 14px; color:var(--muted); line-height:1.45; font-size:13px; flex:1; }
.product-actions { display:flex; gap:8px; flex-wrap:wrap; }
.empty-state { display:none; border:1px dashed #d8d2c3; border-radius:22px; padding:34px; text-align:center; background:var(--soft); color:var(--muted); }
.empty-state strong { display:block; color:var(--green-dark); font-size:20px; margin-bottom:6px; }
.contact-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:20px; }
.contact-card, .form-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:26px; box-shadow:0 16px 38px rgba(23,32,24,.06); }
.map-card { background:#fff; border:1px solid var(--line); border-radius:20px; overflow:hidden; min-height:330px; box-shadow:0 16px 38px rgba(23,32,24,.06); }
.map-card iframe { width:100%; height:100%; min-height:330px; border:0; display:block; filter:saturate(.95); }
.contact-grid .form-card { grid-column:1 / -1; }
.contact-card h3, .form-card h3 { font-size:28px; margin:0 0 14px; }
.info-line { display:flex; gap:12px; border-top:1px solid var(--line); padding:16px 0; color:#4c554d; }
.info-line b { min-width:92px; color:var(--green-dark); }
.form-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:12px; }
.field { display:grid; gap:6px; }
.field.full { grid-column:1/-1; }
label { color:#546057; font-weight:850; font-size:13px; }
input, textarea { width:100%; border:1px solid var(--line); border-radius:15px; padding:13px 14px; outline:none; background:#fbfaf5; color:var(--ink); }
textarea { min-height:120px; resize:vertical; }
.form-actions { display:flex; justify-content:flex-end; gap:10px; margin-top:16px; flex-wrap:wrap; }
footer { padding:44px 0 22px; background:var(--green-dark); color:#fff; }
.footer-grid { display:grid; grid-template-columns:minmax(260px,1.35fr) repeat(3,minmax(160px,1fr)); gap:44px; align-items:start; }
footer img { width:130px; background:#fff; border-radius:10px; padding:5px 8px; margin-bottom:16px; }
footer p { color:rgba(255,255,255,.82); line-height:1.65; margin:0; max-width:330px; }
footer h4 { margin:0 0 12px; }
footer a { display:block; color:rgba(255,255,255,.82); margin:9px 0; }
.footer-brand { padding-bottom:8px; }
.subfooter { border-top:1px solid rgba(255,255,255,.16); margin-top:30px; padding-top:18px; color:rgba(255,255,255,.68); display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:13px; }
.whatsapp-float { position:fixed; right:18px; bottom:18px; z-index:35; width:58px; height:58px; border-radius:100%; background:#1dbb61; color:#fff; display:grid; place-items:center; box-shadow:0 14px 30px rgba(29,187,97,.32); font-size:24px; font-weight:950; }
.modal { position:fixed; inset:0; z-index:50; display:none; place-items:center; padding:20px; background:rgba(10,18,12,.58); }
.modal.open { display:grid; }
.modal-card { width:min(760px, 100%); max-height:calc(100vh - 40px); overflow:auto; background:#fff; border-radius:24px; box-shadow:0 24px 70px rgba(0,0,0,.28); }
.modal-head { display:flex; justify-content:space-between; gap:18px; align-items:flex-start; padding:22px; border-bottom:1px solid var(--line); }
.modal-head span { color:var(--red); font-weight:950; text-transform:uppercase; letter-spacing:.08em; font-size:12px; }
.modal-head h3 { margin:5px 0 0; font-size:30px; letter-spacing:-.02em; }
.modal-close { border:1px solid var(--line); background:#fff; border-radius:100%; width:40px; height:40px; cursor:pointer; font-size:22px; line-height:1; }
.modal-body { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:20px; padding:22px; }
.modal-specs { display:grid; gap:10px; }
.modal-spec { display:flex; justify-content:space-between; gap:12px; border-bottom:1px solid var(--line); padding-bottom:10px; color:var(--muted); }
.modal-spec b { color:var(--green-dark); }
.modal-actions { display:flex; gap:10px; flex-wrap:wrap; padding:0 22px 22px; }
@media (max-width:1050px) {
  .navlinks { display:none; }
  .hero-grid, .catalog-layout, .contact-grid, .split-bands { grid-template-columns:1fr; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .category-grid { grid-template-columns:repeat(2,1fr); }
  .info-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .sidebar { position:static; }
}
@media (max-width:760px) {
  .container { width:100%; padding-inline:10px; }
  .topbar .right, .nav .secondary { display:none; }
  .nav .container { height:68px; }
  .brand img { width:116px; }
  .hero { padding-top:28px; }
  h1 { font-size:43px; }
  .hero p, .lead { font-size:16px; }
  .trust-row, .category-grid, .products-grid, .filter-panel, .modal-body { grid-template-columns:1fr; }
  .hero-photo { aspect-ratio:4 / 3; max-height:none; border-width:7px; }
  .section { padding:54px 0; }
  .section-head { display:block; }
  .section-head p { margin-top:14px; }
  .catalog-wrap { border-radius:22px; padding:12px; }
  .sidebar { display:none; }
  .toolbar-count { width:100%; }
  .product-actions .btn { flex:1; min-width:135px; }
  .form-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .feature-band { min-height:auto; padding:24px; border-radius:18px; }
  .map-card, .map-card iframe { min-height:280px; }
  .whatsapp-float { width:54px; height:54px; }
}
