/* ==========================================================================
   Teles Advogados — Página Em Construção
   Paleta: branco (#ffffff) · marinho (#1e2e48) · dourado (#9e7141)
   ========================================================================== */

:root {
  --color-navy: #1e2e48;
  --color-navy-soft: #3a4a68;
  --color-gold: #9e7141;
  --color-gold-soft: #c6a06a;
  --color-white: #ffffff;
  --color-off-white: #f7f6f4;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* ---------- Layout base ---------- */

.construcao {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 6vw 4rem;
  overflow: hidden;
}

/* moldura decorativa sutil, ecoa o traço dourado da marca */
.construcao__bg-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 0;
}

.construcao__bg-frame::before,
.construcao__bg-frame::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--color-gold);
  opacity: 0.55;
}

.construcao__bg-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.construcao__bg-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.construcao__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

/* ---------- Logo ---------- */

.construcao__logo {
  max-width: 330px;
  width: 82vw;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.construcao__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Divider ---------- */

.construcao__divider {
  width: 64px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* ---------- Textos ---------- */

.construcao__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 0.9rem;
}

.construcao__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 1.4rem;
}

.construcao__title span {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--color-gold-soft);
}

.construcao__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

/* ---------- Contato ---------- */

.construcao__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.construcao__contact-link {
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.construcao__contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.construcao__contact-link:hover {
  color: var(--color-gold);
}

.construcao__contact-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- Endereço ---------- */

.construcao__address {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

/* ---------- Rodapé ---------- */

.construcao__footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.5rem, 6vh, 3.5rem);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Animações de entrada ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.construcao__logo { animation-delay: 0.05s; }
.construcao__divider { animation-delay: 0.2s; }
.construcao__eyebrow { animation-delay: 0.3s; }
.construcao__title { animation-delay: 0.4s; }
.construcao__text { animation-delay: 0.5s; }
.construcao__contact { animation-delay: 0.6s; }
.construcao__address { animation-delay: 0.65s; }
.construcao__footer { animation-delay: 0.85s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsividade ---------- */

@media (max-width: 768px) {
  .construcao {
    padding: 8vh 7vw 3rem;
  }

  .construcao__bg-frame {
    inset: 12px;
  }

  .construcao__logo {
    width: 78vw;
    max-width: 320px;
  }

  .construcao__contact {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 420px) {
  .construcao__title {
    font-size: 2rem;
  }
}

@media (max-height: 620px) {
  .construcao {
    justify-content: flex-start;
    padding-top: 5vh;
  }
}
