/* ============================================================
   SHE. — Candidatura Manicure · Porto
   Preto & branco · Editorial · Fonte da marca
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #f7f6f3;
  --bg-soft: #efede8;
  --bg-card: #fdfcfa;
  --dark: #0e0d0c;
  --dark-2: #141312;
  --dark-card: #1a1918;

  --ink: #121110;
  --ink-soft: #45423e;
  --ink-mute: #7c7770;
  --cream: #f6f4f0;
  --cream-soft: rgba(246, 244, 240, 0.68);
  --cream-mute: rgba(246, 244, 240, 0.42);

  --accent: #2b2926;
  --accent-rgb: 43, 41, 38;

  /* Shimmer metálico monocromático para a headline */
  --grad-silver: linear-gradient(135deg, #111010 0%, #2e2c2a 18%, #6e6a64 38%,
    #a8a49d 50%, #6e6a64 62%, #2e2c2a 82%, #111010 100%);
  --grad-ink-btn: linear-gradient(135deg, #34302c 0%, #141210 55%, #000000 100%);

  --shadow-sm: 0 2px 10px -4px rgba(18, 17, 16, 0.12);
  --shadow-md: 0 14px 34px -14px rgba(18, 17, 16, 0.2);
  --shadow-lg: 0 30px 70px -24px rgba(18, 17, 16, 0.32);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-full: 999px;
  --r-btn: 20px 3px 20px 3px;

  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.44, 1);

  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --space-section: clamp(84px, 11vw, 140px);
  --space-block: clamp(44px, 6vw, 72px);
  --container: min(1120px, 92%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

::selection { background: rgba(18, 17, 16, 0.88); color: var(--cream); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: #33312e; border-radius: 4px; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes silverShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes riseUp {
  from { transform: translateY(112%); }
  to { transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes preloaderOut {
  to { opacity: 0; visibility: hidden; }
}
@keyframes preloaderLogo {
  0% { opacity: 0; letter-spacing: 0.3em; }
  100% { opacity: 1; letter-spacing: 0.02em; }
}
@keyframes badgeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes checkPop {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes btnShine {
  0% { left: -120%; }
  45%, 100% { left: 140%; }
}
@keyframes btnGlowDark {
  0%, 100% {
    box-shadow: 0 10px 30px -10px rgba(14, 13, 12, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow: 0 18px 46px -10px rgba(14, 13, 12, 0.65),
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 0 26px -4px rgba(120, 116, 110, 0.55);
  }
}
@keyframes btnGlowLight {
  0%, 100% {
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }
  50% {
    box-shadow: 0 14px 40px -12px rgba(0, 0, 0, 0.6),
      0 0 38px -4px rgba(246, 244, 240, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ============================================================
   Utilitários
   ============================================================ */
.container { width: var(--container); margin-inline: auto; }

.noise {
  position: fixed; inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9990;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--ink);
  z-index: 10001;
}

.gradient-text {
  background: var(--grad-silver);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: silverShimmer 9s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   Preloader
   ============================================================ */
.preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 10002;
  display: grid;
  place-items: center;
  animation: preloaderOut 0.7s var(--ease) 1.4s forwards;
}
.preloader__logo {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 600;
  color: var(--cream);
  animation: preloaderLogo 1.2s var(--ease-soft) both;
}

/* ============================================================
   Announcement marquee
   ============================================================ */
.announce {
  background: var(--dark);
  color: var(--cream-soft);
  overflow: hidden;
  padding: 11px 0;
  position: relative;
  z-index: 60;
}
.announce__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.announce:hover .announce__track { animation-play-state: paused; }
.announce span {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.announce i { font-style: normal; font-size: 9px; opacity: 0.6; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.45s var(--ease), background 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(247, 246, 243, 0.9);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 1px 0 rgba(18, 17, 16, 0.08), var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav__meta { display: flex; align-items: center; gap: 26px; }
.nav__tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============================================================
   Botões
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  padding: 17px 38px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--r-btn);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease,
    background-color 0.45s ease, color 0.45s ease;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 90%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.6s var(--ease) infinite;
  z-index: 1;
  pointer-events: none;
}
.btn:hover::after { animation-duration: 1.1s; }
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform 0.4s var(--ease); font-size: 14px; letter-spacing: 0; }
.btn:hover .arrow { transform: translateX(5px); }

.btn--ink {
  background: var(--grad-ink-btn);
  color: var(--cream);
  animation: btnGlowDark 3.4s ease-in-out infinite;
}

.btn--light {
  background: linear-gradient(180deg, #ffffff 0%, #f2efe9 55%, #e6e2da 100%);
  color: var(--ink);
  animation: btnGlowLight 3.4s ease-in-out infinite;
}
.btn--light::after {
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.85), transparent);
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.7s var(--ease-soft) forwards;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 110px);
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(18, 17, 16, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 17, 16, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 40% 40%, black 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 70% at 40% 40%, black 30%, transparent 78%);
  pointer-events: none;
}
.hero__watermark {
  position: absolute;
  right: -3vw;
  bottom: -10vw;
  font-family: var(--font-display);
  font-size: clamp(200px, 32vw, 430px);
  font-weight: 700;
  line-height: 0.8;
  color: rgba(18, 17, 16, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-soft) 0.2s forwards;
}
.hero__kicker .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink);
  animation: badgeBlink 2.2s ease-in-out infinite;
}

.hero h1 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(50px, 7.6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.09em;
}
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(112%);
  animation: riseUp 1.1s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: 0.22s; }

.hero__badge {
  display: inline-block;
  margin-top: 22px;
  background: var(--ink);
  color: var(--cream);
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 12px 24px 12px 28px;
  border-radius: 2px 12px 2px 12px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-soft) 0.55s forwards;
}

.hero__warning {
  margin-top: 28px;
  padding-left: 22px;
  border-left: 2px solid var(--ink);
  max-width: 430px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-soft) 0.72s forwards;
}
.hero__warning p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.hero__warning strong { color: var(--ink); font-weight: 650; }

.hero__points {
  list-style: none;
  margin-top: 30px;
  display: grid;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-soft) 0.85s forwards;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.hero__points li strong { color: var(--ink); font-weight: 600; }
.hero__points .tick {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
}
.hero__points .tick svg { width: 12px; height: 12px; }

.hero__ctas {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-soft) 1s forwards;
}
.hero__hint { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; }

/* Foto editorial */
.hero__figure {
  position: relative;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-soft) 0.6s forwards;
}
.hero__figure::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(18, 17, 16, 0.55);
  border-radius: var(--r-md);
  z-index: 0;
  transition: inset 0.6s var(--ease);
}
.hero__figure:hover::before { inset: 10px -10px -10px 10px; }
.hero__figure .frame {
  position: relative;
  z-index: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
}
.hero__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(1.02);
  transition: filter 0.9s var(--ease), transform 1.2s var(--ease);
  animation: kenBurns 22s ease-in-out infinite alternate;
}
.hero__figure:hover img { filter: grayscale(0) contrast(1.02); }
.hero__figure figcaption {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  color: var(--cream);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.hero__figure .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.42));
  z-index: 1;
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  z-index: 2;
}
.hero__scroll small {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__scroll .bar {
  width: 1.5px;
  height: 40px;
  background: rgba(18, 17, 16, 0.3);
  overflow: hidden;
  position: relative;
}
.hero__scroll .bar::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  animation: scrollPulse 2.1s var(--ease) infinite;
}

/* ============================================================
   Requisitos — lista editorial simples
   ============================================================ */
.reqs { padding: var(--space-section) 0; }
.reqs__head { margin-bottom: var(--space-block); }
.reqs__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 16px;
  max-width: 620px;
}
.reqs__list { list-style: none; border-top: 1px solid rgba(18, 17, 16, 0.14); }
.reqs__list li {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: baseline;
  padding: clamp(26px, 4vw, 40px) 0;
  border-bottom: 1px solid rgba(18, 17, 16, 0.14);
  transition: padding-left 0.5s var(--ease), background 0.5s ease;
}
.reqs__list li:hover { padding-left: 14px; background: rgba(18, 17, 16, 0.025); }
.reqs__list .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--ink-mute);
}
.reqs__list h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.reqs__list p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-mute);
}
.reqs__list p strong { color: var(--ink-soft); font-weight: 600; }

/* ============================================================
   Marquee decorativo
   ============================================================ */
.deco-marquee {
  overflow: hidden;
  padding: clamp(14px, 2.6vw, 28px) 0;
  border-top: 1px solid rgba(18, 17, 16, 0.1);
  border-bottom: 1px solid rgba(18, 17, 16, 0.1);
  position: relative;
  background: var(--bg-soft);
}
.deco-marquee::before,
.deco-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 130px;
  z-index: 2;
  pointer-events: none;
}
.deco-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.deco-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), transparent); }
.deco-marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.deco-marquee:hover .deco-marquee__track { animation-play-state: paused; }
.deco-marquee span {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 52px);
  color: rgba(18, 17, 16, 0.13);
}
.deco-marquee em { font-style: italic; }
.deco-marquee i { font-style: normal; font-size: 0.5em; color: rgba(18, 17, 16, 0.25); }

/* ============================================================
   Formulário (secção escura)
   ============================================================ */
.apply {
  position: relative;
  background: var(--dark);
  color: var(--cream);
  padding: var(--space-section) 0;
  overflow: hidden;
}
.apply__watermark {
  position: absolute;
  left: -2vw;
  top: 3vw;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(130px, 20vw, 300px);
  line-height: 1;
  color: rgba(246, 244, 240, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.apply__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: start;
}

.apply__info { position: sticky; top: 110px; }
.apply__info .eyebrow { color: var(--cream-mute); }
.apply__info h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.apply__info h2 em { font-style: italic; font-weight: 500; }
.apply__info > p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--cream-mute);
  max-width: 440px;
}
.apply__steps {
  list-style: none;
  margin-top: 34px;
  display: grid;
  counter-reset: step;
}
.apply__steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246, 244, 240, 0.08);
  font-size: 14px;
  color: var(--cream-soft);
  transition: padding-left 0.4s var(--ease), color 0.4s ease;
}
.apply__steps li:hover { padding-left: 8px; color: var(--cream); }
.apply__steps li::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--cream-mute);
  min-width: 30px;
}
.apply__note {
  margin-top: 30px;
  padding: 16px 20px;
  border-left: 2px solid var(--cream);
  background: rgba(246, 244, 240, 0.045);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--cream-mute);
}
.apply__note strong { color: var(--cream); font-weight: 600; }

/* ---------- Form card ---------- */
.form-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(246, 244, 240, 0.1);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.8vw, 48px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
}

.form-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.form-card__head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  color: var(--cream);
}
.form-card__badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-soft);
  border: 1px solid rgba(246, 244, 240, 0.3);
  padding: 7px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  animation: badgeBlink 2.6s ease-in-out infinite;
}

.field { margin-bottom: 22px; position: relative; }
.field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 10px;
}
.field label em {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 12px;
  color: rgba(246, 244, 240, 0.32);
  margin-left: 6px;
}
.field input[type="text"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  background: rgba(246, 244, 240, 0.05);
  border: 1px solid rgba(246, 244, 240, 0.14);
  border-radius: var(--r-sm);
  color: var(--cream);
  padding: 15px 18px;
  font-size: 15px;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 92px; line-height: 1.7; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(246, 244, 240, 0.28); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(246, 244, 240, 0.6);
  background: rgba(246, 244, 240, 0.08);
  box-shadow: 0 0 0 4px rgba(246, 244, 240, 0.08);
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f6f4f0' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.field select option { background: var(--dark-card); color: var(--cream); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-card .btn--submit {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
  padding: 20px 38px;
  font-size: 12px;
}
.form-card__privacy {
  margin-top: 18px;
  text-align: center;
  font-size: 11px;
  color: rgba(246, 244, 240, 0.3);
  line-height: 1.7;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark-2);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.footer__marquee {
  overflow: hidden;
  padding: clamp(18px, 3vw, 36px) 0;
  border-bottom: 1px solid rgba(246, 244, 240, 0.07);
  position: relative;
}
.footer__marquee::before,
.footer__marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}
.footer__marquee::before { left: 0; background: linear-gradient(90deg, var(--dark-2), transparent); }
.footer__marquee::after { right: 0; background: linear-gradient(270deg, var(--dark-2), transparent); }
.footer__marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marqueeReverse 42s linear infinite;
}
.footer__marquee:hover .footer__marquee-track { animation-play-state: paused; }
.footer__marquee span {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 44px);
  color: rgba(246, 244, 240, 0.1);
}
.footer__marquee em { font-style: italic; }
.footer__marquee i { font-style: normal; font-size: 0.5em; color: rgba(246, 244, 240, 0.18); }

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 0;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}
.footer__meta {
  font-size: 12px;
  color: rgba(246, 244, 240, 0.38);
  letter-spacing: 0.05em;
  line-height: 1.9;
}
.footer__credit {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 244, 240, 0.45);
}
.footer__credit b {
  font-weight: 600;
  background: linear-gradient(135deg, #f6f4f0, #8d8a84, #f6f4f0);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: silverShimmer 7s ease-in-out infinite;
}

/* ============================================================
   Página de obrigado
   ============================================================ */
.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.thanks__check {
  width: 84px; height: 84px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  animation: checkPop 0.7s var(--ease-bounce) 0.2s both;
}
.thanks__check svg { width: 34px; height: 34px; }
.thanks h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-soft) 0.4s forwards;
}
.thanks h1 em { font-style: italic; font-weight: 500; }
.thanks p {
  margin: 20px auto 0;
  max-width: 480px;
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-soft) 0.6s forwards;
}
.thanks p strong { color: var(--ink); }
.thanks .btn { margin-top: 36px; opacity: 0; animation: fadeUp 0.9s var(--ease-soft) 0.8s forwards; }
.thanks__logo {
  position: absolute;
  top: 32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

/* ============================================================
   Responsividade
   ============================================================ */
@media (max-width: 1040px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__figure { max-width: 460px; }
  .hero__scroll { display: none; }
  .apply__inner { grid-template-columns: 1fr; }
  .apply__info { position: static; }
}

@media (max-width: 920px) {
  .reqs__list li { grid-template-columns: 60px 1fr; }
  .reqs__list p { grid-column: 2; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .nav__tag { display: none; }
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(44px, 12.5vw, 66px); }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { flex-direction: column; text-align: center; padding: 34px 0; }
}

@media (max-width: 520px) {
  .announce span { font-size: 9px; letter-spacing: 0.22em; }
  .nav__logo { font-size: 26px; }
  .hero__badge { letter-spacing: 0.2em; font-size: 11px; }
  .hero__figure::before { inset: 10px -10px -10px 10px; }
  .form-card { padding: 26px 20px; }
  .form-card__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dropzone { padding: 28px 16px; }
  .previews { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); }
  .btn { padding: 16px 30px; }
  .reqs__list li { grid-template-columns: 44px 1fr; gap: 14px; }
}

/* ============================================================
   Acessibilidade / motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; }
  .hero__kicker, .hero__badge, .hero__warning, .hero__points, .hero__ctas,
  .hero__figure, .thanks h1, .thanks p, .thanks .btn { opacity: 1; }
  .preloader { display: none; }
}
