:root {
  --green: #146b3a;
  --green-dark: #0d4a28;
  --green-soft: #1f8a4c;
  --cream: #f6f4ef;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --white: #fff;
  --shadow: 0 12px 40px rgba(13, 74, 40, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--green-dark);
  color: #e8f6ee;
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: .02em;
}
.topbar strong { color: #fff; }

header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ececec;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { width: 52px; height: 52px; }
.logo-text strong { display: block; font-size: 22px; letter-spacing: .01em; color: #5a3a1a; }
.logo-text span { font-size: 10px; letter-spacing: .12em; color: #7a5a38; text-transform: uppercase; }

.menu { display: flex; align-items: center; gap: 22px; font-weight: 600; }
.menu a:hover { color: var(--green); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff !important;
  padding: 11px 18px; border-radius: 8px; font-weight: 700;
  border: 0; cursor: pointer;
}
.btn:hover { background: var(--green-dark); }
.btn-ghost {
  background: transparent; color: var(--ink) !important;
  border-bottom: 1px solid #ccc; border-radius: 0; padding: 10px 4px;
}
.hamburger { display: none; background: none; border: 0; font-size: 28px; }

.hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; align-items: center; padding: 56px 0 40px;
}
.kicker { font-size: 13px; letter-spacing: .16em; font-weight: 700; color: #3d3d3d; }
h1 { font-size: clamp(36px, 5vw, 64px); line-height: .95; margin: 14px 0 18px; }
h1 em { font-style: italic; color: var(--green-soft); font-weight: 600; }
.lead { color: var(--muted); font-size: 18px; max-width: 520px; }
.minimo {
  display: flex; align-items: center; gap: 14px; margin: 28px 0 22px;
}
.minimo b { font-size: 28px; }
.minimo span { color: var(--muted); font-size: 14px; }
.bar { width: 4px; height: 46px; background: var(--green); }
.cta-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hint { margin-top: 14px; color: #888; font-size: 13px; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; height: 520px; object-fit: cover; border-radius: 6px;
}
.caption {
  position: absolute; left: 20px; bottom: 24px; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.caption small { letter-spacing: .14em; font-size: 11px; }
.caption p { font-size: 22px; font-weight: 700; }

.slider {
  position: relative; overflow: hidden; background: #062014; color: #fff;
  min-height: 420px;
}
.slide {
  display: none; min-height: 420px;
  background-size: cover; background-position: center;
  position: relative;
}
.slide.active { display: grid; place-items: center; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,32,20,.82), rgba(6,32,20,.35));
}
.slide-inner { position: relative; z-index: 1; width: min(900px, 90%); padding: 70px 0; }
.slide h2 { font-size: clamp(28px, 4vw, 48px); margin: 10px 0 14px; }
.dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: #ffffff66; cursor: pointer;
}
.dots button.on { background: #fff; }

.turtle {
  width: 86px; height: 86px; animation: float 3.4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

section { padding: 72px 0; }
.section-title { font-size: 34px; margin-bottom: 10px; }
.sub { color: var(--muted); margin-bottom: 28px; max-width: 640px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--cream); padding: 24px; border-radius: 14px;
}
.card h3 { margin-bottom: 8px; }

.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; list-style: none; }
.benefits li::before { content: "✓ "; color: var(--green); font-weight: 800; }

.clients {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.client {
  border-radius: 12px; min-height: 110px;
  display: grid; place-items: center; text-align: center; padding: 16px 18px;
  background: #0b0b0b;
}
.client img { max-height: 64px; width: auto; max-width: 100%; object-fit: contain; }

.factory {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center;
}
.map iframe { width: 100%; height: 320px; border: 0; border-radius: 16px; }

footer {
  background: #0b2418; color: #d7efe3; padding: 40px 0 22px;
}
.foot { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
footer a { color: #fff; }
.copy { margin-top: 26px; font-size: 13px; opacity: .75; }

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.wa-float svg { width: 34px; height: 34px; fill: #fff; }

.page-hero { padding: 48px 0 10px; }
.products { display: grid; gap: 28px; }
.product {
  display: grid; grid-template-columns: 280px 1fr; gap: 24px;
  border: 1px solid #eee; border-radius: 16px; overflow: hidden;
}
.product .ph {
  background: #123c28; color: #fff; display: grid; place-items: center; padding: 24px; text-align: center;
}

@media (max-width: 860px) {
  .menu { display: none; }
  .menu.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 18px; border-bottom: 1px solid #eee;
  }
  .hamburger { display: block; }
  .hero, .factory, .product, .foot, .grid-3 { grid-template-columns: 1fr; }
  .clients { grid-template-columns: repeat(2, 1fr); }
  .hero-visual img { height: 340px; }
}
