:root {
  --green: #3f5e1d;
  --green-dark: #2f4716;
  --green-soft: #607536;
  --ink: #202126;
  --muted: #5c5d60;
  --paper: #f4f2ec;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 5vw, 72px) clamp(20px, 7vw, 112px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 242, 236, 0.98) 0%, rgba(244, 242, 236, 0.94) 28%, rgba(244, 242, 236, 0.62) 47%, rgba(244, 242, 236, 0.08) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.05));
}

.pattern {
  position: absolute;
  left: -42px;
  top: 14%;
  width: 210px;
  height: 66%;
  opacity: 0.22;
  background:
    linear-gradient(30deg, transparent 46%, var(--green-soft) 47%, var(--green-soft) 49%, transparent 50%) 0 0 / 110px 96px,
    linear-gradient(150deg, transparent 46%, var(--green-soft) 47%, var(--green-soft) 49%, transparent 50%) 0 0 / 110px 96px;
}

.content {
  width: min(470px, 100%);
  position: relative;
  z-index: 2;
}

.brand {
  text-align: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.brand-logo {
  width: 82px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.brand-name {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--green);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.4rem, 10vw, 6.4rem);
  line-height: 0.78;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name span {
  position: absolute;
  top: -0.34em;
  right: -0.42em;
  color: var(--green-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.16em;
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle,
.group,
.headline,
.feature p,
.whatsapp-button small {
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-subtitle {
  margin: 12px 0 16px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #2a2c31;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--green);
  margin: 0 auto 16px;
}

.group {
  margin: 0;
  font-size: 1.2rem;
  color: #303136;
  word-spacing: 4px;
}

.group strong {
  color: var(--green);
}

h1 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.2rem, 9vw, 6.2rem);
  line-height: 0.88;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--green);
}

.headline {
  margin: 8px 0 24px;
  font-size: clamp(1.5rem, 4vw, 2.05rem);
  font-weight: 800;
}

.notice {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
}

.notice-icon {
  width: 70px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 3px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 2rem;
}

.notice-icon::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  border: 3px solid currentColor;
  border-radius: 6px;
  box-shadow: 10px 10px 0 -3px var(--paper), 10px 10px 0 0 currentColor;
}

.notice p {
  margin: 0;
  max-width: 280px;
  color: #34353a;
  font-size: 1.08rem;
  line-height: 1.35;
}

.notice strong {
  display: block;
  color: var(--green-dark);
}

.whatsapp-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 12px 24px 12px 16px;
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 35px rgba(47, 71, 22, 0.25);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(47, 71, 22, 0.32);
}

.whatsapp-button small {
  display: block;
  margin-bottom: 2px;
  font-size: 0.74rem;
  font-weight: 700;
}

.whatsapp-icon {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #27d366;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.24);
}

.whatsapp-icon svg {
  width: 34px;
  fill: var(--white);
}

.features {
  position: absolute;
  top: clamp(28px, 6vw, 72px);
  right: clamp(24px, 7vw, 96px);
  z-index: 2;
  display: grid;
  gap: 24px;
  width: min(280px, 28vw);
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  position: relative;
  width: 42px;
  aspect-ratio: 1;
  display: block;
  color: var(--green-dark);
}

.feature-icon-box {
  border: 2px solid currentColor;
  transform: rotate(30deg) skewX(-8deg);
}

.feature-icon-box::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 45%;
  height: 45%;
  background: currentColor;
}

.feature-icon-leaf {
  border: 2px solid currentColor;
  border-radius: 80% 0 80% 0;
  transform: rotate(-18deg);
}

.feature-icon-leaf::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 2px;
  height: 31px;
  background: currentColor;
  transform: rotate(42deg);
}

.feature-icon-shield {
  border: 2px solid currentColor;
  border-radius: 6px 6px 16px 16px;
  clip-path: polygon(50% 0, 94% 16%, 84% 72%, 50% 100%, 16% 72%, 6% 16%);
}

.feature-icon-shield::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  width: 10px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(35deg);
}

.feature p {
  margin: 0;
  color: #26282c;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.footer {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  padding: 14px clamp(20px, 7vw, 112px);
  color: var(--white);
  background: linear-gradient(90deg, var(--green-dark), #49651f);
  font-size: 0.96rem;
}

.footer span {
  position: relative;
  white-space: nowrap;
}

.footer span + span::before {
  content: "";
  position: absolute;
  left: calc(clamp(18px, 4vw, 44px) / -2);
  top: 50%;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-50%);
}

.footer strong {
  justify-self: end;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  white-space: nowrap;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(244, 242, 236, 0.98) 0%, rgba(244, 242, 236, 0.94) 54%, rgba(244, 242, 236, 0.72) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  }

  .content {
    margin: 0 auto;
  }

  .brand {
    margin-inline: auto;
  }

  .features {
    position: static;
    width: min(470px, 100%);
    margin: 32px auto 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .footer strong {
    justify-self: center;
  }

  .footer span + span::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-inline: 18px;
  }

  .pattern {
    display: none;
  }

  .brand-name {
    font-size: 4.15rem;
  }

  .brand-subtitle {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 3.45rem;
  }

  .notice {
    align-items: flex-start;
  }

  .notice-icon {
    width: 58px;
    font-size: 1.65rem;
  }

  .whatsapp-button {
    width: 100%;
    justify-content: center;
    padding-right: 14px;
    border-radius: 16px;
    font-size: 1.24rem;
  }
}
