/* =========================================================
   Fernanda Almeida — Página em construção
   ========================================================= */

:root {
  --olive: #68705b;
  --olive-dark: #4f5746;
  --cream: #f7f1e5;
  --cream-2: #efe5d2;
  --gold: #c9a45a;
  --gold-light: #e5c983;
  --text: #3e4037;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.38), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(201,164,90,.14), transparent 30%),
    var(--olive);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
}

main {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(63,70,56,.24), rgba(120,128,103,.08)),
    radial-gradient(circle at center, rgba(255,255,255,.08), transparent 55%);
}

.container {
  z-index: 2;
}

.logo-wrap {
  width: min(330px, 72vw);
  position: relative;
}

.logo {
  display: block;
  width: 100%;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.20));
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  margin-bottom: 1rem;
}

.display-title {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .95;
  font-weight: 600;
  text-shadow: 0 3px 18px rgba(0,0,0,.16);
}

.display-title span {
  color: var(--gold-light);
}

.lead-text {
  max-width: 680px;
  margin-top: 1.5rem;
  color: rgba(255,253,248,.82);
  font-size: .98rem;
  line-height: 1.85;
  font-weight: 300;
}

.construction-card {
  max-width: 800px;
  margin-top: 2.25rem;
  padding: 1.5rem;
  text-align: left;
  border: 1px solid rgba(229,201,131,.42);
  border-radius: 24px;
  background: rgba(247,241,229,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.construction-card h2 {
  margin: .35rem 0 .55rem;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.construction-card p {
  color: rgba(255,253,248,.72);
  font-size: .85rem;
  line-height: 1.7;
}

.card-label {
  color: var(--gold-light);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
}

.btn {
  border-radius: 999px;
  padding: .82rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: .25s ease;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #2e3028;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #292b24;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.btn-outline-gold {
  border-color: rgba(229,201,131,.65);
  color: var(--gold-light);
}

.btn-outline-gold:hover {
  background: rgba(229,201,131,.12);
  border-color: var(--gold-light);
  color: var(--white);
}

.wa-icon {
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  margin-right: .3rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: .7rem;
  align-items: center;
  color: rgba(255,255,255,.55);
  font-size: .76rem;
}

.socials a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color .2s ease;
}

.socials a:hover {
  color: var(--white);
}

footer small {
  color: rgba(255,255,255,.38);
  font-size: .66rem;
  letter-spacing: .04em;
}

.decor {
  position: absolute;
  border: 1px solid rgba(229,201,131,.12);
  border-radius: 50%;
  pointer-events: none;
}

.decor-1 {
  width: 520px;
  height: 520px;
  left: -330px;
  top: -250px;
}

.decor-2 {
  width: 600px;
  height: 600px;
  right: -390px;
  bottom: -340px;
}

@media (max-width: 767.98px) {
  .logo-wrap {
    width: min(270px, 68vw);
  }

  .construction-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .construction-card h2 {
    font-size: 1.7rem;
  }

  .contact-area {
    margin-top: .25rem;
  }
}
