:root {
  --green: #3f8f4b;
  --green-dark: #163d26;
  --green-soft: #eaf7e9;
  --red: #d62b2b;
  --black: #111111;
  --gray: #616b63;
  --cream: #fffaf0;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(22, 61, 38, .13);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63, 143, 75, .14);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-soft), #fff6d9);
  border: 1px solid rgba(63, 143, 75, .25);
}

.brand strong { display: block; font-size: 1.05rem; text-transform: uppercase; }
.brand small { display: block; color: var(--red); font-weight: 800; margin-top: -4px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--green-dark);
}
.nav-links a:hover { background: var(--green-soft); }
.nav-links .nav-cta { background: var(--red); color: var(--white); box-shadow: 0 10px 22px rgba(214,43,43,.22); }
.nav-links .nav-cta:hover { background: #b91e1e; }

.menu-toggle {
  display: none;
  border: 0;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.3rem;
  border-radius: 12px;
  padding: 9px 12px;
}

.section-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  padding: 74px 0 70px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px -20px auto auto;
  width: 55%;
  height: 72%;
  background:
    radial-gradient(circle at 22% 24%, rgba(214, 43, 43, .17), transparent 24%),
    radial-gradient(circle at 72% 40%, rgba(63, 143, 75, .20), transparent 28%),
    linear-gradient(135deg, rgba(234,247,233,.86), rgba(255,250,240,.96));
  border-radius: 44px;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.065em;
  margin-bottom: 22px;
  color: var(--black);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}
h3 { line-height: 1.12; letter-spacing: -.025em; }

.hero-text {
  color: var(--gray);
  font-size: 1.18rem;
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 14px 32px rgba(214,43,43,.26); }
.btn-primary:hover { background: #b91e1e; }
.btn-light { background: var(--green-soft); color: var(--green-dark); border: 1px solid rgba(63,143,75,.22); }

.quick-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}
.quick-info article {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 17px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 143, 75, .12);
}
.quick-info span { font-size: 1.6rem; }
.quick-info p { margin: 0; color: var(--gray); }
.quick-info strong { color: var(--black); }

.hero-visual { position: relative; }
.image-card {
  padding: 12px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 143, 75, .16);
  transform: rotate(1deg);
}
.image-card img {
  width: 100%;
  border-radius: 26px;
  object-fit: contain;
  background: var(--green-soft);
}

.intro-band {
  background: linear-gradient(135deg, var(--green-dark), #29633a);
  color: var(--white);
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}
.intro-band::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.06);
  right: -120px;
  top: -100px;
}
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 45px; align-items: start; }
.intro-band .eyebrow { color: #ffd6d6; }
.intro-text p { font-size: 1.08rem; color: rgba(255,255,255,.84); }

.product-section { padding: 88px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p { color: var(--gray); font-size: 1.05rem; }

.product-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  min-height: 245px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(63,143,75,.14);
  box-shadow: 0 16px 42px rgba(17,17,17,.06);
}
.product-card.strong {
  background: linear-gradient(135deg, var(--green-soft), var(--cream));
  transform: translateY(-18px);
}
.capsule-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.product-card p { color: var(--gray); margin-bottom: 0; }

.benefits-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214,43,43,.10), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(63,143,75,.14), transparent 28%),
    #fbfdf9;
}
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card {
  padding: 28px 22px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17,17,17,.06);
  border: 1px solid rgba(63,143,75,.12);
}
.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}
.benefit-card p { color: var(--gray); margin-bottom: 0; }

.two-column { padding: 90px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.text-panel, .visual-panel {
  min-height: 390px;
  padding: 42px;
  border-radius: 36px;
}
.text-panel { border: 1px solid rgba(63,143,75,.15); box-shadow: var(--shadow); }
.text-panel p { color: var(--gray); font-size: 1.08rem; }
.visual-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.visual-panel p { color: rgba(255,255,255,.82); margin-bottom: 0; }
.circle { position: absolute; border-radius: 50%; opacity: .22; background: var(--white); }
.circle-one { width: 210px; height: 210px; top: -45px; right: -40px; }
.circle-two { width: 135px; height: 135px; top: 110px; left: 42px; }

.delivery-section { padding: 0 0 88px; }
.delivery-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--cream), var(--green-soft));
  border: 1px solid rgba(63,143,75,.16);
  box-shadow: var(--shadow);
}
.delivery-card p { margin-bottom: 0; color: var(--gray); }
.delivery-contact {
  min-width: 240px;
  display: grid;
  gap: 4px;
  padding: 22px;
  border-radius: 24px;
  background: var(--white);
  text-align: center;
}
.delivery-contact strong { color: var(--gray); }
.delivery-contact a { color: var(--red); font-weight: 950; font-size: 1.35rem; }

.final-cta {
  margin-bottom: 70px;
  text-align: center;
  padding: 58px 28px;
  border-radius: 38px;
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -50px auto auto -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.final-cta p { color: rgba(255,255,255,.82); }
.final-cta .btn { position: relative; }

.site-footer {
  padding: 28px 16px;
  text-align: center;
  color: var(--gray);
  border-top: 1px solid rgba(63, 143, 75, .14);
}
.site-footer p { margin: 0; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(37,211,102,.34);
  z-index: 60;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { display: inline-grid; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 14px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(63,143,75,.16);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 42px; }
  .hero::before { width: 100%; height: 44%; top: auto; bottom: 46px; right: 0; }
  .intro-grid, .two-column { grid-template-columns: 1fr; }
  .product-layout, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .product-card.strong { transform: none; }
  .delivery-card { flex-direction: column; align-items: stretch; }
}

@media (max-width: 620px) {
  .section-shell, .navbar { width: min(100% - 22px, 1180px); }
  h1 { font-size: 3rem; }
  .quick-info, .product-layout, .benefit-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .text-panel, .visual-panel, .delivery-card { padding: 28px; border-radius: 28px; }
  .floating-whatsapp { width: 56px; height: 56px; font-size: 1.7rem; }
}
