/* FullSkills Talents — estilo único do site (landing, política e termos) */

:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --bg-2: #121215;
  --card: #16161a;
  --fg: #ededea;
  --soft: #c7c7c2;
  --muted: #8e8e89;
  --rule: rgba(255, 255, 255, 0.12);
  --rule-2: rgba(255, 255, 255, 0.28);
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --black: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: #fff; color: #000; }

/* ---------- barra do topo ---------- */
.barra {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.barra.solida {
  background: rgba(11, 11, 13, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-color: var(--rule);
}
.barra .marca img { width: 150px; transition: opacity 0.3s; }
.barra .marca:hover img { opacity: 0.75; }
.barra nav { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); }
.barra nav a {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--soft);
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.barra nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.barra nav a:hover { color: #fff; }
.barra nav a:hover::after { transform: scaleX(1); }
@media (max-width: 44rem) { .barra nav { display: none; } }

/* ---------- capa ---------- */
.capa {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 7rem 1.5rem 6rem;
  overflow: hidden;
  isolation: isolate;
}
.capa::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -2;
  background: url("/img/textura.jpg") center / cover no-repeat;
  opacity: 0.32;
  animation: respira 18s ease-in-out infinite alternate;
}
.capa::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, rgba(255, 255, 255, 0.07), transparent 70%),
              linear-gradient(to bottom, transparent 55%, var(--bg));
}
@keyframes respira { from { transform: scale(1); } to { transform: scale(1.06); } }
.capa .logo { width: min(620px, 84vw); margin: 0 auto; }
.capa .frase {
  margin: 2.4rem 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--soft);
}
.rolar {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--rule-2), transparent);
  overflow: hidden;
}
.rolar::after {
  content: "";
  position: absolute;
  left: 0; top: -40%;
  width: 1px; height: 40%;
  background: #fff;
  animation: desce 2.2s var(--ease) infinite;
}
@keyframes desce { to { top: 100%; } }

/* ---------- seções ---------- */
section { position: relative; overflow: hidden; padding: clamp(5rem, 11vw, 8.5rem) clamp(1.25rem, 5vw, 3rem); }
section.alt { background: var(--bg-2); }
.wrap { position: relative; max-width: 72rem; margin: 0 auto; }
.rotulo {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}
.titulo {
  margin: 0 0 3rem;
  font: 300 clamp(1.7rem, 4.2vw, 2.8rem)/1.15 var(--sans);
  letter-spacing: 0.02em;
}
.titulo strong { font-weight: 800; }
.fantasma {
  position: absolute;
  right: -0.06em;
  bottom: -0.2em;
  font: 900 clamp(6rem, 20vw, 16rem)/1 var(--black);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.028);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* quem somos: título de um lado, texto do outro */
.lado { display: grid; gap: 2rem; }
@media (min-width: 56rem) { .lado { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; } }
.lado .titulo { margin: 0; }
.texto p { margin: 0 0 1.4rem; color: var(--soft); }
.texto strong { color: #fff; }

/* cartões (pra quem, serviços) */
.cartoes { display: grid; gap: 1.25rem; }
.cartoes.dois { grid-template-columns: 1fr; }
@media (min-width: 46rem) { .cartoes.dois { grid-template-columns: 1fr 1fr; } }
.cartoes.seis { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 46rem) { .cartoes.seis { grid-template-columns: repeat(3, 1fr); } }
.cartao {
  position: relative;
  padding: 2.2rem 1.8rem;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.cartao:hover {
  transform: translateY(-6px);
  border-color: var(--rule-2);
  background: #1b1b20;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.cartao h3 { margin: 1.3rem 0 0.7rem; font: 800 1.05rem/1.25 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; }
.cartao p { margin: 0; color: var(--soft); font-size: 0.97rem; }
.cartoes.seis .cartao { padding: 2rem 1.3rem; text-align: center; }
.cartoes.seis .cartao h3 { font-size: 0.78rem; letter-spacing: 0.2em; margin-top: 1.1rem; }
.icone {
  width: 52px; height: 52px;
  stroke: #fff; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}
.cartoes.seis .icone { margin: 0 auto; }
.cartao:hover .icone { transform: scale(1.12); filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.45)); }

/* talents */
.talents { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 40rem) { .talents { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .talents { grid-template-columns: repeat(3, 1fr); } }
.talent { text-align: center; padding: 2.4rem 1.6rem 2.2rem; }
.talent .foto {
  width: 170px; height: 170px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--rule-2), 0 16px 36px rgba(0, 0, 0, 0.55);
}
.talent .foto img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.02);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.talent:hover .foto img { filter: grayscale(0) contrast(1); transform: scale(1.1); }
.talent h3 { margin: 0 0 0.7rem; font: 900 1.45rem/1.08 var(--black); letter-spacing: 0.01em; }
.talent p { margin: 0 auto; max-width: 21rem; }

/* contato */
.contato { text-align: center; }
.contato .titulo { margin-bottom: 2.2rem; }
.email {
  position: relative;
  display: inline-block;
  font-size: clamp(1.15rem, 3.6vw, 2rem);
  letter-spacing: 0.03em;
  text-decoration: none;
  padding-bottom: 0.4rem;
}
.email::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rule-2);
  transition: background 0.35s;
}
.email::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: #fff;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.email:hover::before { transform: scaleX(1); }
.cidade { margin: 1.5rem 0 0; color: var(--muted); font-size: 0.74rem; letter-spacing: 0.34em; text-transform: uppercase; }

/* rodapé */
footer {
  border-top: 1px solid var(--rule);
  padding: 2.4rem 1.5rem 2.8rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
footer p { margin: 0 0 0.55rem; }
footer a { text-decoration: none; transition: color 0.25s; }
footer a:hover { color: #fff; }

/* entrada suave ao rolar */
.surge { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.surge.visivel { opacity: 1; transform: none; }
.surge.d1 { transition-delay: 0.08s; }
.surge.d2 { transition-delay: 0.16s; }
.surge.d3 { transition-delay: 0.24s; }
.surge.d4 { transition-delay: 0.32s; }
.surge.d5 { transition-delay: 0.4s; }

/* páginas de texto (política e termos) */
.doc { max-width: 46rem; margin: 0 auto; padding: 8rem 1.5rem 4rem; }
.doc h1 { margin: 0 0 0.4rem; font: 300 clamp(1.8rem, 5vw, 2.6rem)/1.15 var(--sans); }
.doc .data { margin: 0 0 3rem; color: var(--muted); font-size: 0.85rem; }
.doc h2 { margin: 2.8rem 0 0.8rem; font: 800 0.95rem/1.3 var(--sans); letter-spacing: 0.12em; text-transform: uppercase; }
.doc h3 { margin: 1.6rem 0 0.5rem; font: 700 1rem/1.4 var(--sans); }
.doc p, .doc li { color: var(--soft); margin: 0 0 0.9rem; }
.doc ul { padding-left: 1.2rem; }
.doc strong { color: #fff; }
.doc .nota {
  margin: 1.6rem 0;
  padding: 1.2rem 1.4rem;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.doc .nota p:last-child { margin-bottom: 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.4rem; font-size: 0.95rem; display: block; overflow-x: auto; }
.doc th, .doc td { text-align: left; padding: 0.65rem 0.8rem; border-bottom: 1px solid var(--rule); vertical-align: top; color: var(--soft); }
.doc th { color: #fff; white-space: nowrap; }
.doc :target { scroll-margin-top: 6rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .surge { opacity: 1; transform: none; }
}
