/* WIS S.A.C. — Landing Próximamente */

:root {
  --navy: #0a1628;
  --navy-mid: #121f35;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.88);
  --white-muted: rgba(255, 255, 255, 0.62);
  --accent: #c8a96e;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: min(920px, calc(100% - 2rem));
  --footer-h: auto;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Hero ── */

.coming-soon {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.coming-soon__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.coming-soon__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.coming-soon__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.72) 0%, rgba(10, 22, 40, 0.88) 55%, rgba(10, 22, 40, 0.95) 100%);
  z-index: 1;
}

.coming-soon__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 1rem;
  max-width: 720px;
}

.coming-soon__logo {
  width: min(280px, 72vw);
  height: auto;
  margin: 0 auto 2rem;
  /*filter: brightness(0) invert(1);*/
  opacity: 0.95;
}

.coming-soon__title {
  font-size: clamp(1.65rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.coming-soon__badge {
  display: inline-block;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.coming-soon__lead {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--white-soft);
  max-width: 42ch;
  margin: 0 auto 2rem;
}

.coming-soon__legal {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.7;
}

.coming-soon__legal p + p {
  margin-top: 0.35rem;
}

.coming-soon__legal strong {
  color: var(--white-soft);
  font-weight: 600;
}

/* ── Footer ── */

.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.8rem;
  color: var(--white-muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.site-footer__link {
  transition: color 0.2s;
}

.site-footer__link:hover {
  color: var(--white);
}

.site-footer__link--accent {
  color: var(--accent);
  font-weight: 500;
}

.site-footer__link--accent:hover {
  color: #dfc892;
}

/* ── Página legal ── */

.legal-page {
  flex: 1;
  padding: 3rem 0 4rem;
  background: var(--navy);
}

.legal-page__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.legal-page__back:hover {
  color: #dfc892;
}

.legal-page__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-page__updated {
  font-size: 0.85rem;
  color: var(--white-muted);
}

.legal-content {
  max-width: 680px;
}

.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 2rem 0 0.65rem;
  color: var(--white-soft);
}

.legal-content p,
.legal-content li {
  font-size: 0.925rem;
  color: var(--white-muted);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-box {
  margin: 1.5rem 0;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--white-soft);
  line-height: 1.65;
}

.legal-box p + p {
  margin-top: 0.4rem;
}

@media (max-width: 600px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
  }

  .coming-soon {
    min-height: calc(100vh - 140px);
    padding-top: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
