:root {
  color-scheme: light;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #23331f;
  background: #e9ebda;
  --bg: #eef0de;
  --surface: #ffffff;
  --surface-soft: #f9f4dd;
  --text: #1d2b1d;
  --muted: #5a6845;
  --primary: #9a7f24;
  --primary-soft: #f5e7b3;
  --secondary: #345b2d;
  --border: rgba(66, 81, 43, 0.14);
  --shadow: 0 24px 80px rgba(51, 70, 32, 0.12);
}

h1, h2, h3, .brand-title, .hero-link {
  font-family: 'Playfair Display', serif;
}

.hero-link,
.brand-title,
.section-label,
.btn,
.product-name,
.feature-card h3,
.contact-label,
.trust-item span {
  letter-spacing: 0.01em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(248, 179, 52, 0.12), transparent 35%), var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

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

button,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

button:hover,
a.btn:hover {
  transform: translateY(-1px);
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0;
}

.brand-group {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.brand-logo-group {
  gap: 1rem;
}

.brand-logo {
  display: block;
  width: 112px;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}

.brand-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.brand-tagline {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.btn-primary,
.btn-hero,
.btn-secondary,
.contact-button {
  padding: 0.95rem 1.4rem;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #3c6a2f, #d9b43e);
  box-shadow: 0 14px 28px rgba(58, 93, 45, 0.2);
}

.btn-secondary {
  background: #fdf7db;
  color: var(--text);
  border: 1px solid rgba(90, 104, 69, 0.18);
}

.section-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #7a6f24;
  font-weight: 700;
}

.section-header h2,
.hero h1,
.trust-panel h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
}

.hero {
  padding: 2rem 0 0;
  display: grid;
  gap: 2rem;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.03;
  margin: 0 0 1rem;
}

.hero-text,
.trust-copy,
.product-card p,
.feature-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-link {
  color: var(--text);
  font-weight: 600;
  align-self: center;
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(45,45,45,0.06);
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(45, 45, 45, 0.06);
}

.product-badge {
  display: inline-flex;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(58, 93, 45, 0.13);
  color: #5a6b33;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-badge + .hero-card-content h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}

.section {
  padding: 3rem 0;
}

.section-products {
  padding-top: 0;
}

.product-grid,
.feature-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.product-grid {
  margin-top: 1.5rem;
}

.product-card,
.feature-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(45,45,45,0.06);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(45, 45, 45, 0.06);
}

.product-card:hover,
.feature-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(45, 45, 45, 0.1);
}

.product-name,
.contact-label {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-price,
.contact-value {
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-weight: 700;
}

.feature-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.trust-panel {
  display: grid;
  gap: 1.5rem;
  background: linear-gradient(180deg, rgba(248, 179, 52, 0.14), #fff);
  border: 1px solid rgba(45,45,45,0.08);
  border-radius: 2rem;
  padding: 2rem;
}

.trust-copy {
  margin: 1rem 0 0;
  max-width: 620px;
}

.trust-highlights {
  display: grid;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1.5rem;
  background: var(--surface);
}

.trust-item span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  background: var(--primary-soft);
  border-radius: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.section-contact {
  padding-bottom: 1rem;
}

.contact-grid {
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
}

.contact-card {
  background: rgba(255,255,255,0.85);
}

.contact-button {
  width: 100%;
  justify-content: center;
}

.footer {
  text-align: center;
  padding: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3.8rem;
  height: 3.8rem;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5e 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 45px rgba(37, 211, 102, 0.24);
  z-index: 20;
}

.whatsapp-float svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: #fff;
}

@media (min-width: 720px) {
  .page-shell {
    padding: 2rem 2rem 4rem;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2.5rem;
  }

  .feature-grid,
  .product-grid,
  .contact-grid,
  .trust-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    padding: 2.5rem 2.5rem 5rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-panel {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
