/* ============================================================
   meudesenvolvedor.com.br — Júlio Augusto
   Paleta derivada da logo: navy profundo + azul elétrico
   ============================================================ */

:root {
  --bg: #050a18;
  --bg-2: #0a1226;
  --bg-card: #0c1530;
  --line: rgba(140, 165, 255, 0.14);
  --blue: #2f6bff;
  --blue-soft: #5b8cff;
  --cyan: #53c8ff;
  --text: #eaf0ff;
  --muted: #93a1c0;
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 16px;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.mono { font-family: var(--font-mono); font-size: 0.92em; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- fundo decorativo ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(95, 130, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 130, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* ---------- utilitários de texto ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.eyebrow__cursor { animation: blink 1.1s steps(1) infinite; }

.grad-text {
  background: linear-gradient(92deg, var(--blue-soft), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn--lg { padding: 0.95rem 1.9rem; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--blue), #1e4fd6);
  color: #fff;
  box-shadow: 0 8px 28px rgba(47, 107, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(47, 107, 255, 0.5);
}

.btn--ghost {
  background: rgba(95, 130, 255, 0.06);
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(140, 165, 255, 0.4);
  background: rgba(95, 130, 255, 0.12);
  transform: translateY(-2px);
}

.btn--wa {
  background: linear-gradient(135deg, #2bd96e, #1caa55);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(5, 10, 24, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.9rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
}

.nav__logo { height: 38px; width: auto; }

.nav__domain {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  gap: 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav__links a { transition: color 0.2s ease; }
.nav__links a:hover { color: var(--text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.nav__burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem 1.6rem;
  background: rgba(5, 10, 24, 0.97);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.nav__mobile.is-open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  padding-top: clamp(7rem, 14vh, 9.5rem);
  padding-bottom: 4rem;
  min-height: 92vh;
}

.hero__hello {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 1rem;
}

.hero__hello strong { color: var(--text); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.02em;
  margin-top: 0.7rem;
}

.hero__typed {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-top: 1.2rem;
  color: var(--muted);
}

.hero__typed-label { color: var(--cyan); margin-right: 0.5rem; }

.hero__typed-word { color: var(--text); font-weight: 500; }

.type-cursor {
  color: var(--cyan);
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero__sub {
  margin-top: 1.2rem;
  max-width: 34rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__stats {
  display: flex;
  gap: 2.6rem;
  margin-top: 2.8rem;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
}

.stat__label {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- retrato ---------- */
.hero__portrait { display: flex; justify-content: center; }

.portrait {
  position: relative;
  width: min(480px, 90vw);
}

.portrait__scene {
  position: relative;
  z-index: 1;
  transition: transform 0.18s ease-out;
}

/* ---------- efeitos futurísticos ao redor do retrato ---------- */
.fx {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.fx--mobile { display: none; }

.fx-ring {
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg 18deg,
    rgba(83, 200, 255, 0.85) 18deg 42deg,
    transparent 42deg 95deg,
    rgba(83, 200, 255, 0.3) 95deg 165deg,
    transparent 165deg 215deg,
    rgba(47, 107, 255, 0.65) 215deg 300deg,
    transparent 300deg 360deg);
  -webkit-mask-image: radial-gradient(circle, transparent 57%, #000 58%, #000 66%, transparent 67%);
  mask-image: radial-gradient(circle, transparent 57%, #000 58%, #000 66%, transparent 67%);
  animation: fx-spin 14s linear infinite;
}

.fx-ring--1 {
  width: 185px;
  height: 185px;
  left: -15%;
  top: 20%;
  opacity: 0.85;
}

.fx-ring--2 {
  width: 110px;
  height: 110px;
  right: -12%;
  top: 12%;
  opacity: 0.5;
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes fx-spin {
  to { transform: rotate(360deg); }
}

.fx-bars {
  right: -13%;
  top: 58%;
  width: 150px;
  height: 56px;
}

.fx-bars i {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 96, 60, 0.85), transparent);
  animation: fx-glide 4.5s ease-in-out infinite;
}

.fx-bars i:nth-child(1) { width: 120px; top: 0; right: 0; }
.fx-bars i:nth-child(2) { width: 80px; top: 24px; right: 18px; animation-delay: 1.4s; }
.fx-bars i:nth-child(3) { width: 100px; top: 48px; right: 6px; animation-delay: 2.8s; }

@keyframes fx-glide {
  0%, 100% { opacity: 0.15; transform: translateX(0); }
  50% { opacity: 0.95; transform: translateX(16px); }
}

.fx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px 3px rgba(83, 200, 255, 0.55);
  animation: float 6s ease-in-out infinite;
}

.fx-dot--1 { left: 0; top: 10%; }
.fx-dot--2 { right: 2%; top: 38%; animation-delay: 2s; }
.fx-dot--3 { left: 6%; bottom: 22%; animation-delay: 4s; width: 4px; height: 4px; }

.fx-floor {
  left: 10%;
  right: 10%;
  bottom: -3%;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(47, 107, 255, 0.4), transparent 68%);
  filter: blur(20px);
}

.chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(10, 18, 38, 0.85);
  border: 1px solid rgba(140, 165, 255, 0.28);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(2, 6, 18, 0.55);
  animation: float 5.5s ease-in-out infinite;
}

.chip__icon { color: var(--cyan); }

.chip--1 { top: -5%; left: -9%; animation-delay: 0s; }
.chip--2 { top: 46%; right: -14%; animation-delay: 1.6s; }
.chip--3 { bottom: -6%; left: 6%; animation-delay: 3.1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  background: rgba(10, 18, 38, 0.45);
  overflow: hidden;
  padding-block: 0.85rem;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--muted);
  animation: marquee 28s linear infinite;
}

.marquee__track i { color: var(--blue); font-style: normal; font-size: 0.6rem; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.section { padding-block: 5.5rem; }

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(10, 18, 38, 0.55) 14%, rgba(10, 18, 38, 0.55) 86%, transparent);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0.6rem;
}

.section__sub {
  color: var(--muted);
  margin-top: 0.8rem;
}

/* ============================================================
   PROJETOS — carrossel em loop
   ============================================================ */
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot--r { background: #ff5f57; }
.dot--y { background: #febc2e; }
.dot--g { background: #28c840; }

.carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.car-track {
  display: flex;
  width: max-content;
  animation: car-scroll 45s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
  .carousel:hover .car-track { animation-play-state: paused; }
}

.car-group {
  display: flex;
  gap: 1.3rem;
  padding-right: 1.3rem;
}

@keyframes car-scroll {
  to { transform: translateX(-50%); }
}

.car-card {
  display: block;
  width: 280px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.car-card:hover,
.car-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(83, 200, 255, 0.5);
  box-shadow: 0 14px 34px rgba(47, 107, 255, 0.18);
}

.car-card__bar {
  display: flex;
  gap: 6px;
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 18, 38, 0.9);
}

.car-card__shot {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.car-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) sepia(1) hue-rotate(185deg) saturate(2.4) brightness(0.72);
  transition: filter 0.35s ease;
}

.car-card__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(47, 107, 255, 0.28), rgba(6, 12, 30, 0.42));
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.car-card:hover .car-card__shot img,
.car-card:focus-visible .car-card__shot img,
.car-card:active .car-card__shot img { filter: none; }

.car-card:hover .car-card__shot::after,
.car-card:focus-visible .car-card__shot::after,
.car-card:active .car-card__shot::after { opacity: 0; }

.car-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem 0.75rem;
}

.car-card__info strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-card__info em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--cyan);
  border: 1px solid rgba(83, 200, 255, 0.35);
  background: rgba(83, 200, 255, 0.07);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  flex-shrink: 0;
}

/* ============================================================
   SOBRE
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.about__photo {
  position: relative;
  width: min(300px, 70vw);
  margin-inline: auto;
}

.about__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: saturate(0.65) brightness(0.8) contrast(0.96);
}

.about__mist {
  position: absolute;
  z-index: 2;
  inset: -8%;
  pointer-events: none;
  overflow: hidden;
}

.about__mist::before,
.about__mist::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(48% 32% at 30% 60%, rgba(9, 17, 38, 0.8), transparent 70%),
    radial-gradient(52% 34% at 76% 76%, rgba(5, 10, 24, 0.85), transparent 72%);
  filter: blur(16px);
  animation: mist-drift 16s ease-in-out infinite alternate;
}

.about__mist::after {
  background:
    radial-gradient(56% 36% at 58% 38%, rgba(10, 20, 46, 0.55), transparent 70%),
    radial-gradient(42% 28% at 22% 86%, rgba(5, 10, 24, 0.9), transparent 75%);
  animation-duration: 21s;
  animation-delay: -8s;
}

@keyframes mist-drift {
  from { transform: translateX(-4%); }
  to { transform: translateX(4%); }
}

.terminal {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070d1e;
  box-shadow: 0 24px 60px rgba(2, 6, 18, 0.6);
  overflow: hidden;
}

.terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 0.95rem;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 18, 38, 0.9);
}

.terminal__file {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 0.5rem;
}

.terminal__body {
  padding: 1.3rem 1.4rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.75;
  min-height: 305px;
  white-space: pre-wrap;
  overflow-x: auto;
}

.terminal__body .tk-kw { color: #7aa2ff; }
.terminal__body .tk-var { color: #eaf0ff; }
.terminal__body .tk-key { color: #53c8ff; }
.terminal__body .tk-str { color: #8ee6a2; }
.terminal__body .tk-num { color: #ffc46b; }
.terminal__body .tk-bool { color: #ff9ea3; }
.terminal__body .tk-com { color: #5b6a8c; }

.about__text .section__title { margin-bottom: 1.1rem; }

.about__text p + p { margin-top: 0.9rem; }

.about__text p { color: var(--muted); }

.about__text strong { color: var(--text); }

.about__list {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  gap: 0.65rem;
}

.about__list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-weight: 500;
}

.check {
  color: var(--cyan);
  font-weight: 700;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.service {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(12, 21, 48, 0.9), rgba(7, 13, 30, 0.9));
  padding: 1.7rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
  transform: translateY(-5px);
  border-color: rgba(83, 200, 255, 0.4);
  box-shadow: 0 16px 40px rgba(47, 107, 255, 0.14);
}

.service__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(83, 200, 255, 0.08);
  border: 1px solid rgba(83, 200, 255, 0.25);
  margin-bottom: 1.1rem;
}

.service__icon svg { width: 24px; height: 24px; }

.service h3 {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.service p {
  color: var(--muted);
  font-size: 0.92rem;
}

.service--featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  border-color: rgba(95, 130, 255, 0.4);
  background:
    radial-gradient(90% 160% at 8% 0%, rgba(47, 107, 255, 0.2), transparent 55%),
    linear-gradient(160deg, rgba(12, 21, 48, 0.95), rgba(7, 13, 30, 0.95));
}

.service--featured .service__icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.service--featured .service__icon svg { width: 30px; height: 30px; }

.service--featured h3 { font-size: 1.25rem; }

.service--featured p { max-width: 46rem; }

.service__badge {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid rgba(83, 200, 255, 0.4);
  background: rgba(83, 200, 255, 0.08);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}

/* ============================================================
   PROCESSO
   ============================================================ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: passo;
}

.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 13, 30, 0.65);
  padding: 1.6rem 1.5rem;
}

.step__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-soft);
  display: inline-block;
  border: 1px solid rgba(95, 130, 255, 0.35);
  background: rgba(95, 130, 255, 0.08);
  border-radius: 8px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.9rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============================================================
   CONTATO
   ============================================================ */
.cta-panel {
  position: relative;
  text-align: center;
  border: 1px solid rgba(95, 130, 255, 0.3);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 21, 48, 0.95), rgba(7, 13, 30, 0.95));
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.4rem, 5vw, 4rem);
  overflow: hidden;
}

.cta-panel__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(47, 107, 255, 0.28), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
  position: relative;
}

.cta-panel__sub {
  color: var(--muted);
  max-width: 32rem;
  margin: 0.9rem auto 0;
  position: relative;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
  position: relative;
}

.cta-panel__email {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 2rem;
  background: rgba(5, 10, 24, 0.8);
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__logo { height: 30px; width: auto; }

.footer__text {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__made {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.load-seq {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.load-seq:nth-child(1) { animation-delay: 0.05s; }
.load-seq:nth-child(2) { animation-delay: 0.15s; }
.load-seq:nth-child(3) { animation-delay: 0.25s; }
.load-seq:nth-child(4) { animation-delay: 0.35s; }
.load-seq:nth-child(5) { animation-delay: 0.45s; }
.load-seq:nth-child(6) { animation-delay: 0.55s; }
.load-seq:nth-child(7) { animation-delay: 0.65s; }

.hero__portrait.load-seq { animation-delay: 0.35s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .load-seq, .reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  .chip, .marquee__track, .type-cursor, .eyebrow__cursor,
  .fx-ring, .fx-bars i, .fx-dot,
  .about__mist::before, .about__mist::after { animation: none; }
  .project:hover, .service:hover, .btn:hover { transform: none; }
  .car-track { animation: none; }
  .carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .car-card__shot img { filter: none; }
  .car-card__shot::after { opacity: 0; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 4rem;
    min-height: auto;
    padding-top: 7rem;
  }

  .hero__portrait { order: -1; }

  .portrait { width: min(320px, 78vw); }

  .services, .steps { grid-template-columns: repeat(2, 1fr); }

  .about { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { background: rgba(5, 10, 24, 0.82); backdrop-filter: blur(14px); }

  .fx--mobile { display: block; }

  #servicos .hero__portrait {
    margin-bottom: 3.2rem;
  }

  .hero__stats { gap: 1.6rem; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .portrait { width: min(320px, 80vw); }

  .service--featured {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .service__badge { margin-left: 0; order: -1; }

  .chip--1 { left: -4%; }
  .chip--2 { right: -6%; }
  .chip--3 { left: -2%; }

  .fx-ring--1 { width: 140px; height: 140px; left: -8%; }
  .fx-ring--2 { right: -6%; }
  .fx-bars { right: -6%; width: 110px; }

  .services, .steps { grid-template-columns: 1fr; }

  .section { padding-block: 3.8rem; }
}


















