:root {
  --deep-green: #3F653E;
  --sage: #889877;
  --accent: #DA9045;
  --cream: #FAF6EF;
  --sand: #E5D2B1;
  --text: #1E2A1E;
  --muted: #5B6B5B;
  --card: #FFFFFF;
  --border: rgba(63, 101, 62, 0.18);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(63, 101, 62, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  position: relative;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-center {
  flex: 1;
  justify-content: center;
}

.nav-right {
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 84px;
  height: 84px;
}

.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .name strong {
  font-size: 16px;
  letter-spacing: 0.4px;
}

.brand .name span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(30, 42, 30, 0.9);
  flex-wrap: nowrap;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(136, 152, 119, 0.18);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .05s ease, background .2s ease, border .2s ease, color .2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--deep-green);
  color: white;
  box-shadow: 0 8px 18px rgba(63, 101, 62, 0.22);
}

.btn-primary:hover {
  background: #345736;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(63, 101, 62, 0.22);
  color: var(--deep-green);
}

.btn-ghost:hover {
  background: rgba(63, 101, 62, 0.08);
}

.lang {
  background: rgba(136, 152, 119, 0.15);
  border: 1px solid rgba(63, 101, 62, 0.18);
  padding: 6px 8px;
  border-radius: 12px;
  font-weight: 800;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(63, 101, 62, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 16px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--deep-green);
  transition: all 0.3s ease;
}

.menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(63, 101, 62, 0.12);
  margin-top: 12px;
}

.mobile-menu a {
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(63, 101, 62, 0.08);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Mobile menu styles */
.mobile-hidden {
  display: inline-flex !important;
}

.mobile-only {
  display: none !important;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 10px 0;
  background: white;
  border-radius: 12px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.show {
  display: flex;
  max-height: 1000px;
  opacity: 1;
  padding: 15px 0;
}

.mobile-menu a {
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  background-color: rgba(63, 101, 62, 0.05);
}

.mobile-menu .btn-ghost {
  margin: 10px 20px;
  text-align: center;
  justify-content: center;
}

.mobile-lang {
  padding: 10px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .nav-center {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .mobile-hidden {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex !important;
  }

  .nav-right .actions {
    gap: 8px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .container {
    width: calc(100% - 24px);
  }
}

.hero {
  padding: 52px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(63, 101, 62, 0.18);
  background: rgba(229, 210, 177, 0.28);
  border-radius: 999px;
  font-weight: 800;
  color: rgba(30, 42, 30, 0.92);
}

.kicker b {
  color: var(--deep-green);
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: -0.4px;
}

.hero p {
  margin: 0 0 16px;
  color: rgba(30, 42, 30, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: rgba(30, 42, 30, 0.72);
  line-height: 1.45;
  font-size: 14px;
}

.section {
  padding: 34px 0;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.2px;
}

.section .sub {
  margin: 0 0 18px;
  color: rgba(30, 42, 30, 0.72);
  line-height: 1.55;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.badge {
  display: inline-flex;
  background: rgba(218, 144, 69, 0.14);
  border: 1px solid rgba(218, 144, 69, 0.25);
  color: #7B3D09;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.list {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: rgba(30, 42, 30, 0.78);
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(63, 101, 62, 0.18);
  background: rgba(136, 152, 119, 0.14);
  font-weight: 800;
  color: rgba(30, 42, 30, 0.85);
  font-size: 12px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.products {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.product {
  grid-column: span 6;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(63, 101, 62, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.product .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.product p {
  margin: 0 0 10px;
  color: rgba(30, 42, 30, 0.76);
  line-height: 1.55;
  font-size: 14px;
}

.footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(63, 101, 62, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}

.small {
  color: rgba(30, 42, 30, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.footer a:hover {
  text-decoration: underline;
}

.form {
  display: grid;
  gap: 10px;
}

.inputable {
  width: 100%;
  border-collapse: collapse;
  min-width: 100%;
  table-layout: auto;
}

.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(63, 101, 62, 0.18);
  outline: none;
  font-size: 14px;
  background: white;
}

textarea.input {
  min-height: 120px;
  resize: vertical;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.notice {
  background: rgba(229, 210, 177, 0.32);
  border: 1px solid rgba(63, 101, 62, 0.16);
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(30, 42, 30, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(63, 101, 62, 0.96);
  color: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp span {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.floating-whatsapp small {
  display: block;
  font-size: 12px;
  opacity: 0.92;
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .product {
    grid-column: span 12;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .row {
    grid-template-columns: 1fr;
  }
}

.mobile-menu {
  display: none;
  padding: 10px 0 16px;
}

.mobile-menu a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 800;
}

.mobile-menu a:hover {
  background: rgba(136, 152, 119, 0.18);
}

.mobile-menu.open {
  display: block;
}

/* disabled links (no external content yet) */
.disabled-link {
  pointer-events: none;
  opacity: 0.65;
  text-decoration: none !important;
}

/* mobile logo sizing */
@media (max-width: 520px) {
  .brand img {
    width: 72px;
    height: 72px;
  }

  .brand .name strong {
    font-size: 14px;
  }

  .actions .btn {
    padding: 9px 10px;
  }
}