:root {
  --green: #275a4c;
  --deep: #173f35;
  --clay: #cf8e63;
  --cream: #f4efe6;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--cream);
  color: var(--deep);
  font-family: Arial, Helvetica, sans-serif;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 38px clamp(28px, 6vw, 96px) 24px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

/* Cabeçalho */

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: block;
  width: min(260px, 48vw);
  height: auto;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(207, 142, 99, 0.14);
  animation: pulse 2s ease-in-out infinite;
}

/* Conteúdo principal */

.hero {
  width: min(1240px, 100%);
  margin: auto;
  padding: 48px 0 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.6vw, 100px);
  line-height: 0.91;
  letter-spacing: -0.055em;
  font-weight: 400;
}

h1 em {
  color: var(--clay);
  font-weight: 400;
}

.intro {
  max-width: 570px;
  margin: 32px 0 0;
  color: #52645e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 17px;
  width: min(390px, 100%);
  margin-top: 38px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-soon .line {
  flex: 1;
  height: 1px;
  background: rgba(39, 90, 76, 0.28);
}

.coming-soon small {
  color: var(--clay);
  font-size: 11px;
}

/* Ícone de localização */

.art {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icone-pontobr {
  display: block;
  width: min(65%, 430px);
  max-height: 500px;
  height: auto;
  object-fit: contain;
  animation: float 3.5s ease-in-out infinite;
}

/* Rodapé */

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(39, 90, 76, 0.18);
  color: #64746f;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

/* Animações */

@keyframes pulse {
  50% {
    transform: scale(0.7);
    opacity: 0.6;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Tablets e celulares */

@media (max-width: 850px) {
  .site-shell {
    padding: 26px 24px 20px;
  }

  .status {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 62px 0 34px;
    gap: 40px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .art {
    width: 100%;
    min-height: 360px;
    margin: 0 auto;
  }

  .icone-pontobr {
    width: min(65%, 320px);
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}

/* Celulares pequenos */

@media (max-width: 480px) {
  .brand {
    width: 190px;
  }

  .status span {
    display: none;
  }

  .art {
    min-height: 300px;
  }

  .icone-pontobr {
    width: min(68%, 270px);
  }
}

/* Acessibilidade */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}