:root {
  --brown-earth: #4a2c0a;
  --forest-amber: #c87d0a;
  --cupuaçu-gold: #f5c070;
  --amazon-cream: #fdf6ec;
  --forest-green: #3a7010;
  --soft-cream: #fffaf2;
  --text-muted: #746656;
  --line-cream: #edd8b4;
  --shadow-card: 0 28px 70px rgba(74, 44, 10, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow-x: hidden;
  color: var(--brown-earth);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 12%, rgba(245, 192, 112, 0.3), transparent 31rem),
    linear-gradient(145deg, #fffaf2 0%, var(--amazon-cream) 52%, #f6ead8 100%);
}

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

/* FUNDO ARTESANAL */
.page-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(105deg, rgba(200, 125, 10, 0.018) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(15deg, rgba(74, 44, 10, 0.014) 0 1px, transparent 1px 26px),
    radial-gradient(rgba(74, 44, 10, 0.045) 0.6px, transparent 0.8px);
  background-size: auto, auto, 30px 30px;
  opacity: 0.42;
}

/* ESTRUTURA PRINCIPAL */
.construction-page {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px) 20px 28px;
}

.construction-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 760px);
  overflow: hidden;
  padding: clamp(34px, 7vw, 68px) clamp(24px, 7vw, 76px);
  border: 1px solid rgba(200, 125, 10, 0.23);
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(253, 246, 236, 0.91)),
    var(--soft-cream);
  box-shadow: var(--shadow-card);
}

.construction-card::before,
.construction-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.construction-card::before {
  width: 260px;
  height: 260px;
  top: -170px;
  right: -120px;
  background: rgba(245, 192, 112, 0.17);
}

.construction-card::after {
  width: 220px;
  height: 220px;
  bottom: -160px;
  left: -130px;
  background: rgba(58, 112, 16, 0.07);
}

/* IDENTIDADE DA MARCA */
.brand-logo-frame {
  width: clamp(152px, 25vw, 210px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(200, 125, 10, 0.32);
  border-radius: 50%;
  background: var(--amazon-cream);
  box-shadow:
    0 16px 32px rgba(74, 44, 10, 0.12),
    0 0 0 7px rgba(245, 192, 112, 0.1);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-name {
  margin: 24px 0 0;
  color: var(--forest-amber);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

/* MENSAGEM PRINCIPAL */
h1 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.title-divider {
  width: min(100%, 230px);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr 8px 1fr;
  align-items: center;
  gap: 12px;
}

.title-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--forest-amber));
}

.title-divider span:last-child {
  background: linear-gradient(90deg, var(--forest-amber), transparent);
}

.title-divider i {
  width: 8px;
  height: 8px;
  display: block;
  border: 1px solid var(--forest-amber);
  transform: rotate(45deg);
}

.construction-message {
  max-width: 580px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.16rem);
  line-height: 1.7;
  text-wrap: balance;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 24px 0 0;
  padding: 8px 16px;
  border: 1px solid var(--line-cream);
  border-radius: 999px;
  color: var(--forest-green);
  background: rgba(255, 253, 247, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

/* RODAPÉ INSTITUCIONAL */
.construction-footer {
  padding: 0 20px 24px;
  text-align: center;
}

.construction-footer small {
  color: rgba(74, 44, 10, 0.62);
  font-size: 0.76rem;
  line-height: 1.5;
}

/* RESPONSIVIDADE */
@media (max-width: 520px) {
  .construction-page {
    padding: 20px 14px;
  }

  .construction-card {
    padding: 32px 20px 36px;
    border-radius: 14px;
  }

  .brand-name {
    max-width: 260px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .construction-message {
    line-height: 1.62;
  }

  .coming-soon {
    width: 100%;
    border-radius: 10px;
  }
}

@media (max-height: 720px) and (min-width: 521px) {
  .construction-page {
    padding-top: 28px;
  }

  .construction-card {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .brand-logo-frame {
    width: 150px;
  }

  .brand-name {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
