/* =========================================================
   LUJONE — LANDING PAGE "EM BREVE"
   Desktop de referência: 1920 × 1080
   Mobile: responsivo a partir de 767px
   ========================================================= */

:root {
  --black: #080808;
  --white: #ffffff;
  --wine: #5b0010;
  --red: #c91835;
  --muted: rgba(255, 255, 255, 0.82);
  --page-padding: clamp(24px, 7vw, 150px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  background: var(--black);
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.coming-soon__background {
  position: absolute;
  inset: 0 0 118px;
  z-index: -3;
  background-image: url("../img/img_lujone_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
  animation: backgroundZoom 18s ease-in-out infinite alternate;
}

.coming-soon__shade {
  position: absolute;
  inset: 0 0 118px;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 27%,
      rgba(0, 0, 0, 0.42) 52%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.00) 60%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.coming-soon__content {
  position: relative;
  display: flex;
  min-height: calc(100svh - 118px);
  width: min(100%, 1920px);
  margin: 0 auto;
  padding:
    clamp(70px, 14vh, 170px)
    var(--page-padding)
    clamp(70px, 11vh, 130px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.coming-soon__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--page-padding);
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  opacity: 0.35;
}

.coming-soon__eyebrow {
  margin: 0 0 30px;
  color: var(--red);
  font-size: clamp(12px, 0.82vw, 16px);
  font-weight: 800;
  letter-spacing: 0.02em;
  animation: revealUp 0.7s ease-out both;
}

.coming-soon__logo {
  width: clamp(230px, 18vw, 350px);
  height: auto;
  margin-bottom: clamp(34px, 4.5vh, 54px);
  animation: revealUp 0.8s 0.08s ease-out both;
}

.coming-soon__title {
  margin: 0;
  max-width: 680px;
  color: var(--white);
  font-size: clamp(44px, 4.1vw, 78px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-wrap: balance;
  animation: revealUp 0.8s 0.17s ease-out both;
}

.contact-bar {
  position: absolute;
  inset: auto 0 0;
  min-height: 118px;
  background:
    linear-gradient(90deg, #52000e 0%, #650013 48%, #52000e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-bar__inner {
  width: min(100%, 1920px);
  min-height: 118px;
  margin: 0 auto;
  padding: 24px var(--page-padding);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  text-align: left;
}

.contact-bar__label,
.contact-bar__item {
  margin: 0;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.35;
}

.contact-bar__label {
  font-weight: 800;
}

.contact-bar__item {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-bar__item:hover,
.contact-bar__item:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.contact-bar__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.24);
}

/* Notebook e telas intermediárias */
@media (max-width: 1280px) {
  .coming-soon__background {
    background-position: 58% center;
  }

  .coming-soon__content {
    padding-top: 90px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --page-padding: 24px;
  }

  .coming-soon {
    min-height: 100svh;
  }

  .coming-soon__background,
  .coming-soon__shade {
    inset: 0 0 178px;
  }

  .coming-soon__background {
    background-size: auto 50%;
    background-position: 51% top;
    background-color: var(--black);
    animation: none;
  }

  .coming-soon__shade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.10) 37%,
        rgba(0, 0, 0, 0.90) 72%,
        rgba(0, 0, 0, 1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.14) 70%,
        rgba(0, 0, 0, 0.03) 100%
      );
  }

  .coming-soon__content {
    min-height: calc(100svh - 178px);
    justify-content: flex-end;
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .coming-soon__content::before {
    display: none;
  }

  .coming-soon__eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .coming-soon__logo {
    width: min(72vw, 270px);
    margin-bottom: 26px;
  }

  .coming-soon__title {
    max-width: 92%;
    font-size: clamp(36px, 10.8vw, 52px);
    line-height: 1.04;
  }

  .contact-bar {
    min-height: 178px;
  }

  .contact-bar__inner {
    min-height: 178px;
    padding: 24px var(--page-padding);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .contact-bar__label {
    margin-bottom: 3px;
  }

  .contact-bar__divider {
    display: none;
  }
}

/* Mobile baixo */
@media (max-width: 390px) {
  .coming-soon__background {
    background-position: 61% top;
  }

  .coming-soon__title {
    font-size: 35px;
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backgroundZoom {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.045);
  }
}
