:root {
  --green: #008a4b;
  --green-2: #00a65a;
  --red: #e31b2f;
  --red-2: #c91421;
  --gold: var(--red);
  --ink: #173227;
  --muted: #65746d;
  --line: #e3ece6;
  --wash: #f7fbf8;
  --white: #fff;
  --shadow: 0 18px 50px rgba(14, 52, 34, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section.alt { background: var(--wash); }
.eyebrow {
  color: var(--green-2);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-title {
  margin: 8px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--green);
}
.section-copy { color: var(--muted); max-width: 720px; margin: 0 0 32px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.topbar {
  background: #06351f;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--green); }
.brand-logo {
  width: clamp(132px, 14vw, 176px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: inset 0 -3px 0 rgba(0,138,75,.75);
}
.brand small { display: block; color: var(--muted); font-weight: 700; font-size: .72rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  font-weight: 750;
  font-size: .95rem;
  color: #28463a;
}
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item > a, .nav-links .current_page_item > a { background: #fff0f1; color: var(--red-2); }
.nav-links .nav-email-link {
  color: var(--red-2);
  background: #fff0f1;
  border: 1px solid rgba(227,27,47,.16);
}
.nav-links .nav-email-link:hover {
  background: var(--red);
  color: var(--white);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(227,27,47,.18); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-secondary { background: var(--green); color: var(--white); }
.btn-outline { border-color: rgba(227,27,47,.28); color: var(--red-2); background: var(--white); }

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/hero-manufacturing.png") center/cover no-repeat;
  animation: heroDrift 16s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4,40,23,.94) 0%, rgba(4,70,39,.8) 43%, rgba(227,27,47,.18) 76%, rgba(227,27,47,.06) 100%);
}
@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}
.hero-content { max-width: 680px; color: var(--white); padding: 86px 0; }
.hero h1 {
  margin: 12px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: 0;
}
.hero p { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,.84); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.28);
}
.hero-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.stat { padding: 18px 20px; }
.stat strong { display: block; color: var(--red); font-size: 1.7rem; line-height: 1; }
.stat span { color: var(--muted); font-weight: 750; font-size: .9rem; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(20,39,27,.02);
}
.card-body { padding: 24px; }
.card h3, .card h2 { margin: 0 0 10px; color: var(--green); line-height: 1.2; }
.card p { color: var(--muted); margin: 0 0 16px; }
.media-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf8f1;
  color: var(--green);
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.check-list { padding: 0; margin: 18px 0 0; list-style: none; }
.check-list li { margin: 10px 0; color: #4a5a51; }
.check-list i { color: var(--red); margin-right: 8px; }

.band {
  background: linear-gradient(120deg, #06351f, var(--green) 58%, var(--red));
  color: var(--white);
  padding: 64px 0;
}
.band .section-title, .band h2 { color: var(--white); }
.band p { color: rgba(255,255,255,.8); }

.tabs, .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.filter-btn {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #44564b;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }
.searchbar {
  width: min(520px, 100%);
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}
.badge, .product-card .badge {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 99px;
  background: #eaf8f1;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.wrapper-product {
  border-color: rgba(227, 27, 47, .22);
  box-shadow: 0 18px 45px rgba(227, 27, 47, .08);
}

.wrapper-product .wrapper-frame {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(0, 138, 75, .1), rgba(227, 27, 47, .1)),
    #fff;
  border-bottom: 1px solid rgba(227, 27, 47, .16);
}

.wrapper-product .wrapper-frame img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  aspect-ratio: auto;
}

.wrapper-product .badge {
  background: #ffe8ea;
  color: var(--red-2);
}

.wrapper-product h3 {
  color: var(--red-2);
}

.soap-theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.soap-theme-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
}

.timeline { border-left: 3px solid var(--red); padding-left: 24px; }
.timeline-item { margin-bottom: 28px; }
.timeline-item strong { color: var(--green); }
.leadership {
  padding: 34px;
  background: var(--wash);
  border-left: 5px solid var(--red);
  border-radius: 8px;
}

.form {
  display: grid;
  gap: 14px;
}
.form input, .form textarea, .form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
.form textarea { min-height: 128px; padding-top: 12px; resize: vertical; }
.notice {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  background: #edf8ef;
  color: var(--green);
  font-weight: 800;
}
.notice.show { display: block; }
.map {
  min-height: 360px;
  border: 0;
  width: 100%;
  border-radius: 8px;
  filter: saturate(.9);
}

.footer {
  background: #061f14;
  color: rgba(255,255,255,.78);
  padding: 64px 0 22px;
}
.footer h3, .footer strong { color: var(--white); }
.footer a { color: rgba(255,255,255,.78); }
.footer a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.55rem;
  box-shadow: var(--shadow);
}
.cookie {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 59;
  width: min(420px, calc(100% - 36px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
}
.cookie.show { display: block; }
.cookie p { margin: 0 0 12px; color: var(--muted); }

.page-hero {
  background: linear-gradient(120deg, rgba(6,53,31,.97), rgba(0,138,75,.82), rgba(227,27,47,.34)), url("../images/hero-manufacturing.png") center/cover no-repeat;
  color: var(--white);
  padding: 82px 0;
}
.page-hero h1 {
  margin: 8px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}
.page-hero p { max-width: 740px; color: rgba(255,255,255,.82); }

@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links a { width: 100%; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar span:nth-child(2) { display: none; }
  .hero { min-height: 760px; align-items: start; }
  .hero-content { padding-top: 70px; }
  .hero-strip .container { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .hero-actions .btn { width: 100%; }
  .hero::after { background: linear-gradient(180deg, rgba(7,29,16,.94), rgba(14,45,24,.72)); }
  .footer-bottom { display: block; }
}
