:root {
  --green: #163d28;
  --green-deep: #082216;
  --green-mid: #245c38;
  --wood: #8d5b2f;
  --wood-dark: #4c2d19;
  --leaf: #b9d87a;
  --cream: #f6f0df;
  --paper: #fffaf0;
  --gold: #f3c343;
  --ink: #172017;
  --muted: rgba(23, 32, 23, 0.64);
  --white: #fffef7;
  --shadow: 0 22px 54px rgba(8, 34, 22, 0.16);
  --max-width: 1180px;
  --ticker-height: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--ticker-height);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    repeating-linear-gradient(
      8deg,
      rgba(76, 45, 25, 0.045) 0,
      rgba(76, 45, 25, 0.045) 1px,
      transparent 1px,
      transparent 18px
    ),
    repeating-linear-gradient(
      88deg,
      rgba(141, 91, 47, 0.035) 0,
      rgba(141, 91, 47, 0.035) 1px,
      transparent 1px,
      transparent 28px
    ),
    radial-gradient(circle at 12% 10%, rgba(185, 216, 122, 0.24), transparent 26%),
    linear-gradient(180deg, #f8f4e8 0%, #efe5d0 48%, #f9f3e5 100%);
  overflow-x: hidden;
}

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

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

.ticker {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--ticker-height);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 195, 67, 0.13), transparent 48%),
    linear-gradient(90deg, var(--green-deep) 0%, var(--green) 52%, var(--wood-dark) 100%);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 14px 32px rgba(8, 34, 22, 0.28);
}

.ticker::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 18px
    );
  opacity: 0.62;
  pointer-events: none;
}

.ticker-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
}

.ticker span {
  padding: 19px 0;
  white-space: nowrap;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.ticker span::before {
  content: "•";
  display: inline-block;
  margin: 0 28px;
  color: var(--gold);
  font-size: 1.1em;
  text-shadow: 0 0 14px rgba(243, 195, 67, 0.62);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(8, 34, 22, 0.28);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px clamp(18px, 4vw, 56px);
  overflow: hidden;
  background: var(--green-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.03);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 34, 22, 0.92), rgba(8, 34, 22, 0.46)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(-35deg, transparent 0 42px, rgba(243, 195, 67, 0.1) 42px 43px),
    linear-gradient(180deg, rgba(8, 34, 22, 0.1), rgba(8, 34, 22, 0.42));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(8, 34, 22, 0.52));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    repeating-linear-gradient(
      7deg,
      rgba(76, 45, 25, 0.035) 0,
      rgba(76, 45, 25, 0.035) 1px,
      transparent 1px,
      transparent 20px
    ),
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.78)),
    linear-gradient(120deg, rgba(185, 216, 122, 0.18), transparent);
  box-shadow: 0 32px 90px rgba(8, 34, 22, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.hero-copy {
  color: var(--green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 18px;
  max-width: 42ch;
  color: var(--wood-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span {
  font-size: clamp(2.35rem, 5.55vw, 5.25rem);
  font-weight: 900;
}

.hero h1 strong {
  width: fit-content;
  padding: 8px 18px 10px;
  border-radius: 16px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: clamp(2.15rem, 5.8vw, 5.4rem);
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(76, 45, 25, 0.18);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(8, 34, 22, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: var(--green-mid);
  box-shadow: 0 20px 40px rgba(8, 34, 22, 0.28);
}

main {
  overflow: hidden;
}

section {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 56px);
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 28px;
}

.section-header-centered {
  text-align: center;
}

.section-header h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: inherit;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.products-section {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(76, 45, 25, 0.04) 0,
      rgba(76, 45, 25, 0.04) 1px,
      transparent 1px,
      transparent 22px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(22, 61, 40, 0.03) 0,
      rgba(22, 61, 40, 0.03) 1px,
      transparent 1px,
      transparent 28px
    ),
    linear-gradient(180deg, var(--paper), #f1e4cc);
}

.products-section .section-header-centered {
  width: min(980px, 100%);
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 38px) clamp(18px, 5vw, 58px);
  border: 1px solid rgba(76, 45, 25, 0.14);
  border-top: 5px solid var(--gold);
  border-radius: 24px;
  background:
    repeating-linear-gradient(
      8deg,
      rgba(76, 45, 25, 0.035) 0,
      rgba(76, 45, 25, 0.035) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(135deg, rgba(255, 253, 245, 0.96), rgba(246, 240, 223, 0.92));
  box-shadow: 0 22px 52px rgba(8, 34, 22, 0.12);
}

.products-section .section-header-centered h2 {
  max-width: 850px;
  margin: 0 auto;
}

.products-carousel {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto 28px;
}

.products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 260px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  scroll-snap-align: center;
  overflow: hidden;
  border-radius: 22px;
  background: #fffdf5;
  border: 1px solid rgba(76, 45, 25, 0.12);
  box-shadow: var(--shadow);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 5px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}

.product-media {
  position: relative;
  width: 100%;
  height: 218px;
  flex: 0 0 218px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.4), rgba(185, 216, 122, 0.16)),
    #efe5d0;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 34, 22, 0.1));
  pointer-events: none;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.04);
}

.product-card:nth-child(2) img {
  object-position: center 78%;
}

.product-card:nth-child(3) img {
  object-position: center 38%;
}

.product-card h3 {
  margin: auto 0 0;
  min-height: 86px;
  display: flex;
  align-items: flex-start;
  padding: 22px;
  color: var(--green-deep);
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 900;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 26px rgba(8, 34, 22, 0.22);
}

.carousel-button-prev {
  left: -10px;
}

.carousel-button-next {
  right: -10px;
}

.section-cta-center {
  display: flex;
  justify-content: center;
}

.benefits-section {
  position: relative;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.055) 0,
      rgba(255, 255, 255, 0.055) 1px,
      transparent 1px,
      transparent 16px
    ),
    repeating-linear-gradient(
      -35deg,
      transparent 0,
      transparent 40px,
      rgba(243, 195, 67, 0.07) 40px,
      rgba(243, 195, 67, 0.07) 41px
    ),
    linear-gradient(135deg, rgba(22, 61, 40, 0.94), rgba(8, 34, 22, 0.98)),
    var(--green-deep);
  color: var(--white);
}

.benefits-section .section-header h2 {
  color: var(--white);
}

.benefits-grid {
  max-width: var(--max-width);
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 182px;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(243, 195, 67, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.22), rgba(255, 250, 240, 0.08));
  border: 1px solid rgba(243, 195, 67, 0.34);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 5px solid var(--gold);
  pointer-events: none;
  z-index: 0;
}

.benefit-card span,
.benefit-card strong {
  position: relative;
  z-index: 1;
}

.benefit-card span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(243, 195, 67, 0.16);
  border: 1px solid rgba(243, 195, 67, 0.42);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.benefit-card strong {
  max-width: 11ch;
  color: var(--white);
  font-family: inherit;
  font-size: clamp(1.75rem, 2.65vw, 2.28rem);
  line-height: 0.98;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.benefits-section .cta-button {
  background: var(--gold);
  color: var(--green-deep);
}

.about-section {
  background:
    repeating-linear-gradient(
      8deg,
      rgba(76, 45, 25, 0.045) 0,
      rgba(76, 45, 25, 0.045) 1px,
      transparent 1px,
      transparent 20px
    ),
    linear-gradient(180deg, #f8efe0, #fff6e6);
}

.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.about-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 700;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.about-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(76, 45, 25, 0.12);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.site-footer {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(135deg, var(--green-deep), #03170f 68%, var(--green));
  color: var(--white);
  border-top: 4px solid var(--gold);
}

.footer-grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(320px, 440px) minmax(190px, 230px);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-content: center;
}

.footer-brand {
  width: min(260px, 100%);
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--paper);
  padding: 16px 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.footer-brand img {
  width: min(210px, 100%);
}

.footer-info {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: clamp(18px, 2vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-info span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.footer-info p,
.footer-info a {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  line-height: 1.5;
}

.footer-info p {
  max-width: 48ch;
}

.footer-whatsapp {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(243, 195, 67, 0.14);
  border: 1px solid rgba(243, 195, 67, 0.34);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding: 13px 18px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.92rem;
}

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

  .hero-shell {
    text-align: center;
  }

  .hero h1 strong {
    margin: 0 auto;
  }

  .hero-kicker {
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    margin: 0 auto;
  }

  .footer-info {
    min-height: auto;
    align-items: center;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 640px) {
  :root {
    --ticker-height: 46px;
  }

  .ticker span {
    padding: 14px 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .ticker span::before {
    margin: 0 18px;
  }

  .hero {
    min-height: auto;
    padding: 18px 12px 28px;
  }

  .hero-shell {
    min-height: clamp(330px, 88vw, 382px);
    padding: 30px 18px 32px;
    border-radius: 22px;
  }

  .hero-kicker {
    max-width: 30ch;
    margin-bottom: 12px;
    color: var(--green-deep);
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.075em;
  }

  .hero h1 {
    gap: 8px;
  }

  .hero h1 span {
    font-size: clamp(1.9rem, 9.4vw, 3.05rem);
    line-height: 0.98;
  }

  .hero h1 strong {
    padding: 7px 13px 9px;
    border-radius: 12px;
    font-size: clamp(2.2rem, 11.6vw, 3.25rem);
    line-height: 0.92;
  }

  .cta-button {
    min-height: 50px;
    margin-top: 20px;
    padding: 12px 22px;
    font-size: 0.94rem;
  }

  section {
    padding: 42px 14px;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
  }

  .products-section .section-header-centered {
    margin-bottom: 24px;
    padding: 20px 14px;
    border-radius: 18px;
  }

  .products-track {
    grid-auto-columns: minmax(240px, 82vw);
    gap: 16px;
  }

  .product-card {
    min-height: 320px;
  }

  .product-media {
    height: 196px;
    flex-basis: 196px;
  }

  .product-card h3 {
    min-height: 80px;
    padding: 18px;
    font-size: 1rem;
  }

  .carousel-button {
    display: none;
  }

  .benefit-card {
    min-height: 122px;
    padding: 18px 20px 20px;
    gap: 14px;
    border-radius: 18px;
  }

  .benefit-card strong {
    max-width: none;
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .floating-whatsapp {
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .site-footer {
    padding-bottom: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .cta-button {
    transition: none;
  }
}
