:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #132a24;
  background: #f5f6f2;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #f5f6f2;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 250, 247, 0.98) 0%, rgba(250, 250, 247, 0.93) 34%, rgba(250, 250, 247, 0.48) 57%, rgba(250, 250, 247, 0.06) 78%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(1240px, calc(100% - 96px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 42px 0 36px;
}

.brand {
  width: max-content;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #14724f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero__copy {
  align-self: center;
  width: min(680px, 58%);
  padding: 54px 0 38px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #45655c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 670px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #4c625c;
  font-size: 19px;
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.whatsapp,
.status {
  min-height: 50px;
  max-width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #14724f;
  color: #ffffff;
  background: #14724f;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.whatsapp:hover,
.whatsapp:focus-visible {
  border-color: #0d573c;
  background: #0d573c;
}

.whatsapp:focus-visible {
  outline: 3px solid rgba(20, 114, 79, 0.25);
  outline-offset: 3px;
}

.status {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin: 0;
  border: 1px solid rgba(19, 42, 36, 0.24);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(8px);
}

.status span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #14724f;
  box-shadow: 0 0 0 5px rgba(20, 114, 79, 0.12);
}

.footnote {
  margin: 0;
  color: #526861;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero__image {
    object-position: 61% center;
  }

  .hero__wash {
    background: linear-gradient(90deg, rgba(250, 250, 247, 0.98) 0%, rgba(250, 250, 247, 0.91) 62%, rgba(250, 250, 247, 0.55) 100%);
  }

  .hero__inner {
    width: min(100% - 40px, 680px);
    padding: 26px 0 24px;
  }

  .brand {
    font-size: 18px;
  }

  .hero__copy {
    width: 100%;
    padding: 44px 0 34px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(38px, 12vw, 54px);
  }

  .lead {
    max-width: 32rem;
    font-size: 17px;
    line-height: 1.55;
  }

  .actions,
  .whatsapp,
  .status {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy {
    animation: reveal 700ms ease-out both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
