/* ── W Beauty · Grupo VIP · estilo Navi · preto e branco ── */

:root {
  --bg: #000;
  --ink: #fff;
  --ink-2: rgba(255,255,255,.72);
  --muted: rgba(255,255,255,.5);
  --line: rgba(255,255,255,.14);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

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

html, body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* HERO (split estilo Navi) */
.hero {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 88vh;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  width: 100%;
  align-items: stretch;
  min-height: inherit;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  padding: 80px clamp(28px, 4vw, 64px) 80px max(28px, calc((100vw - var(--container)) / 2 + 28px));
  max-width: 100%;
}

/* Eyebrow estilo Navi */
.eyebrow {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  width: max-content;
  max-width: 100%;
}

/* H1 estilo Navi */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 22ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink-2);
  display: block;
  margin-top: 4px;
}

.hero__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}
.hero h1 { text-wrap: balance; }

/* Botão estilo Navi (retangular, sem ícone, uppercase) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 30px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  cursor: pointer;
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
}
.btn:hover {
  background: rgba(255,255,255,.85);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }

/* Imagem (lado direito edge-to-edge) */
.hero__visual {
  display: flex;
  align-items: stretch;
  background: #000;
  position: relative;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer (branco) */
.foot {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 18px 0;
}
.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,.65);
}
.foot__inner a {
  color: rgba(0,0,0,.65);
  transition: color .2s ease;
}
.foot__inner a:hover { color: #000; }

/* Tablet */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content {
    padding: 64px var(--gutter);
    align-items: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }
  .hero h1, .hero__lead { max-width: 100%; }
  .eyebrow { margin: 0 auto; }
  .hero__visual {
    aspect-ratio: 4 / 5;
    max-height: 70vh;
    max-width: 440px;
    width: 100%;
    margin: 0 auto 56px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero__content {
    padding: 40px var(--gutter) 56px;
    gap: 18px;
  }
  .hero h1 { font-size: clamp(34px, 9vw, 46px); line-height: 1.06; }
  .hero__lead { font-size: 14px; }
  .btn { width: 100%; height: 52px; }
  .foot__inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
