:root {
  color-scheme: dark;
  --background: #0c1311;
  --surface: #14201c;
  --text: #f4f0e7;
  --muted: #b9c0b6;
  --green: #4f7137;
  --green-light: #7e9c5e;
  --earth: #d58e21;
  --cyan: #148ca2;
  --line: rgba(255, 255, 255, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(6, 81, 62, 0.32), transparent 32rem),
    radial-gradient(circle at 88% 86%, rgba(213, 142, 33, 0.12), transparent 28rem),
    linear-gradient(145deg, #0a110f 0%, #101a17 55%, #171c15 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.25rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.page-shell::before {
  position: absolute;
  inset: 1.1rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  content: "";
  pointer-events: none;
}

.hero {
  display: flex;
  width: min(100%, 900px);
  margin: auto;
  padding: clamp(2.5rem, 7vh, 6rem) 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.brand {
  display: block;
  width: clamp(15rem, 42vw, 26rem);
  height: auto;
  margin: 0 0 clamp(2.25rem, 7vh, 4.75rem);
  object-fit: contain;
}

.status {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.48rem 0.85rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(126, 156, 94, 0.32);
  border-radius: 999px;
  color: #c6d7b5;
  background: rgba(79, 113, 55, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 0.25rem rgba(126, 156, 94, 0.12);
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1::after {
  display: block;
  width: 3.8rem;
  height: 0.2rem;
  margin: 1.7rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--earth), var(--green-light));
  content: "";
}

.intro {
  max-width: 620px;
  margin: 1.55rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  margin-top: 2.4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.partners {
  display: flex;
  width: min(100%, 570px);
  margin-top: clamp(2.1rem, 5vh, 3.5rem);
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
}

.partner-logo {
  display: block;
  width: calc(50% - 0.375rem);
  height: 7.25rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.85rem 2.5rem rgba(0, 0, 0, 0.15);
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  padding: 0.75rem 1.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(213, 142, 33, 0.65);
  outline-offset: 4px;
}

.button-primary {
  color: #f8fbf4;
  background: #42632f;
  box-shadow: 0 0.8rem 2.5rem rgba(14, 30, 18, 0.42);
}

.button-primary:hover {
  background: #51783a;
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.075);
}

.whatsapp-mark {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 50%;
  color: #42632f;
  background: #f4f0e7;
  font-size: 0.9rem;
  line-height: 1;
}

.phone-mark {
  color: var(--earth);
  font-size: 0.58rem;
  box-shadow: 0 0 0 0.22rem rgba(213, 142, 33, 0.1);
}

footer {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.8rem;
  color: rgba(244, 240, 231, 0.47);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-line {
  width: 2.5rem;
  height: 1px;
  background: rgba(244, 240, 231, 0.25);
}

.ambient,
.route {
  position: absolute;
  z-index: -2;
  pointer-events: none;
}

.ambient {
  border-radius: 50%;
  filter: blur(1px);
}

.ambient-one {
  top: -13rem;
  right: -10rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(20, 140, 162, 0.13);
  box-shadow: inset 0 0 8rem rgba(20, 140, 162, 0.035);
}

.ambient-two {
  bottom: -16rem;
  left: -12rem;
  width: 35rem;
  height: 35rem;
  border: 1px solid rgba(213, 142, 33, 0.12);
  box-shadow: inset 0 0 8rem rgba(213, 142, 33, 0.035);
}

.route {
  width: 42vw;
  min-width: 23rem;
  height: 7rem;
  border-top: 1px solid rgba(126, 156, 94, 0.12);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.route::after {
  position: absolute;
  top: -0.18rem;
  left: 53%;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--earth);
  box-shadow: 0 0 1.2rem rgba(213, 142, 33, 0.75);
  content: "";
}

.route-one {
  top: 21%;
  right: -8%;
}

.route-two {
  bottom: 15%;
  left: -11%;
  transform: rotate(162deg);
}

@media (max-width: 640px) {
  .page-shell {
    padding: 1.25rem;
  }

  .page-shell::before {
    inset: 0.65rem;
    border-radius: 1.2rem;
  }

  .hero {
    padding: 3.2rem 0 6rem;
  }

  .brand {
    width: min(78vw, 21rem);
    margin-bottom: 2.6rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .intro {
    max-width: 33rem;
  }

  .actions {
    width: min(100%, 23rem);
    flex-direction: column;
  }

  .partners {
    width: min(100%, 23rem);
    flex-direction: column;
  }

  .partner-logo {
    width: 100%;
    height: 6.7rem;
  }

  .button {
    width: 100%;
  }

  footer {
    justify-content: center;
  }
}

@media (max-height: 720px) and (min-width: 641px) {
  .brand {
    width: 18rem;
    margin-bottom: 2rem;
  }

  .hero {
    padding: 2rem 0 5rem;
  }

  h1 {
    font-size: clamp(2.7rem, 7vh, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
