/* Portfólio Lins Web — página seletora. Identidade: navy + laranja, Outfit. */

:root {
  --navy: #10182b;
  --navy-2: #182340;
  --ink: #e9edf6;
  --muted: #8ea0c5;
  --orange: #ff7a1a;
  --line: rgba(255, 255, 255, .09);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255, 122, 26, .12), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(64, 110, 255, .10), transparent 55%),
    var(--navy);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; }

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

/* ---------- topo ---------- */

.top { padding: 22px 0; }

.top__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.brand__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #ffb15c);
  color: #10182b; font-weight: 800; font-size: 22px;
}

.brand__name { font-weight: 700; font-size: 18px; line-height: 1.15; }

.brand__name em {
  display: block; font-style: normal; font-weight: 400;
  font-size: 12px; color: var(--muted); letter-spacing: .14em; text-transform: uppercase;
}

.top__cta {
  text-decoration: none; font-weight: 600; font-size: 14px;
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px;
  transition: border-color .2s, background .2s;
}

.top__cta:hover { border-color: var(--orange); background: rgba(255, 122, 26, .1); }

/* ---------- hero ---------- */

.hero { padding: 64px 0 40px; }

.hero__eyebrow {
  color: var(--orange); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; font-size: 13px; margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 18px;
}

.grad {
  background: linear-gradient(90deg, var(--orange), #ffc46b);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero__sub { max-width: 640px; color: var(--muted); font-size: 18px; }

.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__hint {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; font-size: 14px; color: var(--muted);
  border: 1px dashed var(--line); border-radius: 999px; padding: 8px 18px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot--a { background: var(--orange); }
.dot--b { background: #4f8cff; margin-left: -12px; border: 2px solid var(--navy); }

/* ---------- cards ---------- */

.grid-sec { padding: 28px 0 80px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.card {
  display: flex; flex-direction: column;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s, border-color .25s, background .25s;
}

.card:hover { transform: translateY(-5px); border-color: rgba(255, 122, 26, .55); background: rgba(255, 255, 255, .06); }

.card__shot { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #0b101e; }

.card__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.card__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 22px; }

.card__tags { display: flex; flex-wrap: wrap; gap: 6px; }

.card__tags i {
  font-style: normal; font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px 10px;
}

.card__name { font-size: 21px; font-weight: 700; }

.card__desc { font-size: 14.5px; color: var(--muted); }

.card__go { margin-top: 6px; font-weight: 700; font-size: 14px; color: var(--orange); }

.card--cta {
  justify-content: center; gap: 12px; padding: 28px;
  background: linear-gradient(160deg, rgba(255, 122, 26, .16), rgba(255, 122, 26, .03));
  border-color: rgba(255, 122, 26, .35);
}

.card--cta strong { font-size: 21px; }

.card--cta p { color: var(--muted); font-size: 14.5px; }

.btn {
  align-self: flex-start;
  background: var(--orange); color: #10182b;
  font-weight: 700; font-size: 14px; text-decoration: none;
  border-radius: 999px; padding: 12px 22px;
  transition: filter .2s;
}

.btn:hover { filter: brightness(1.1); }

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--line); padding: 26px 0 34px; }

.foot__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  color: var(--muted); font-size: 14px;
}

.foot a { color: var(--ink); font-weight: 600; text-decoration: none; }
.foot a:hover { color: var(--orange); }

/* ---------- responsivo / acessibilidade ---------- */

@media (max-width: 560px) {
  .hero { padding-top: 40px; }
  .top__cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .top__cta, .btn { transition: none; }
}
