/* ==========================================================================
   LEAL System — Landing page
   Identidade: identidade/design-guide.md
   ========================================================================== */

:root {
  /* Cores — paleta marrom/creme/laranja (2026-07-18, identidade/design-guide.md) */
  --black-deep: #15140F;    /* preto profundo — hero, navbar, overlays full-bleed */
  --brown-dark: #1D1712;    /* fundo principal — marrom quase-preto */
  --brown: #3A2A1F;         /* fundo alternativo / cards — marrom chocolate */
  --brown-light: #4A362A;   /* hover de cards — marrom chocolate claro */
  --orange: #E2622C;        /* destaque único: CTA, eyebrows, ênfase, ícone-chave */
  --orange-soft: #F2915C;   /* hover do laranja / variação clara */
  --cream: #F2E8D8;         /* texto principal sobre fundo escuro — off-white/creme */
  --cream-dim: #D8C9B2;     /* texto secundário sobre fundo escuro — creme apagado */
  --ink: #241A12;           /* texto sobre fundo claro / sobre botão laranja */
  --muted: #9C8974;         /* texto apagado (legendas) — cinza-marrom */
  --line: rgba(242, 232, 216, 0.14); /* bordas sutis — tom creme neutro */

  /* Fontes */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Medidas */
  --maxw: 1120px;
  --radius: 14px;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--brown-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  line-height: 1.12;
  text-wrap: balance;
}

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
/* Paleta única: nenhuma seção alterna de fundo. A separação vem do espaçamento
   generoso acima e de hairlines discretas, não de blocos de cor. */
.section--alt { background: var(--brown-dark); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 46px);
  margin-bottom: 18px;
  max-width: 20ch;
}

.section-lead {
  color: var(--cream-dim);
  max-width: 60ch;
  font-size: 18px;
}

.handwritten {
  font-family: var(--font-script);
  color: var(--orange);
  font-size: 26px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary {
  background: var(--orange);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn svg { width: 20px; height: 20px; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(21, 20, 15, 0.86);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand b { color: var(--orange); font-weight: 400; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 15px;
  color: var(--cream-dim);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav a:hover,
.nav a.active { color: var(--cream); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.header-cta {
  display: inline-flex;
  padding: 9px 18px;
  font-size: 14px;
}

/* Hambúrguer */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 110px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.hero::after {
  /* Vinheta sutil nas bordas pra garantir contraste do texto — sem glow concentrado atrás do headline (design-guide.md) */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 55%, var(--black-deep) 100%),
    linear-gradient(to right, var(--black-deep) 0%, transparent 26%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 780px; }
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  margin-bottom: 24px;
}
.accent { color: var(--orange); }
.hero-lead {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 30px 0 0;
  font-size: 15px;
  color: var(--cream-dim);
}
.hero-stats b {
  color: var(--orange);
  font-weight: 600;
}
.hero-stats .sep {
  color: var(--orange);
  opacity: 0.45;
}

/* ==========================================================================
   Faixa (marquee)
   ========================================================================== */
.marquee {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin: 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 34s linear infinite;
}
.marquee-seq { display: inline-flex; align-items: center; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  padding: 0 6px;
}
.marquee-track .dot {
  color: var(--orange);
  font-style: normal;
  font-size: 16px;
  margin: 0 22px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ==========================================================================
   Serviços — header centralizado + cards em leque
   ========================================================================== */
.section-header--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.section-header--center .section-title,
.section-header--center .section-lead {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
#servicos .section-lead,
#portfolio .section-lead,
#como-funciona .section-lead,
#feedbacks .section-lead { color: var(--muted); }

.service-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(226,98,44,0.14);
  color: var(--orange);
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; }

.fan-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
  margin-top: 84px;
  padding: 0 20px;
}
.fan-card {
  appearance: none;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  width: 228px;
  height: 296px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--brown);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.35);
  transition: transform .35s cubic-bezier(.22,1,.36,1), margin .35s cubic-bezier(.22,1,.36,1),
              border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.fan-card .service-icon { flex-shrink: 0; }
.fan-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--cream); flex-shrink: 0; }
.fan-tagline {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fan-link {
  display: block;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}

/* Estado de leque: sobrepostos, com leve arco e rotação, centralizados */
.fan-card:nth-child(1) { transform: rotate(-10deg) translate(22px, 22px); z-index: 1; margin-right: -68px; }
.fan-card:nth-child(2) { transform: rotate(-5deg)  translate(9px, 6px);   z-index: 2; margin-right: -68px; }
.fan-card:nth-child(3) { transform: rotate(0deg)   translate(0, 0);      z-index: 3; margin-right: -68px; }
.fan-card:nth-child(4) { transform: rotate(5deg)   translate(-9px, 6px); z-index: 4; margin-right: -68px; }
.fan-card:nth-child(5) { transform: rotate(10deg)  translate(-22px, 22px); z-index: 5; }

.fan-card:hover {
  border-color: rgba(226,98,44,0.55);
  background: var(--brown-light);
  z-index: 6;
}

/* Ao passar o mouse sobre o grupo, os cards abrem um pouco e ficam lado a lado,
   mas continuam levemente sobrepostos e com um resquício do arco — pra caber
   os 5 numa linha só, sem quebrar pro card 5 cair embaixo. */
.fan-group:hover .fan-card,
.fan-group:focus-within .fan-card {
  margin-right: -34px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.fan-group:hover .fan-card:last-child,
.fan-group:focus-within .fan-card:last-child {
  margin-right: 0;
}
.fan-group:hover .fan-card:nth-child(1),
.fan-group:focus-within .fan-card:nth-child(1) { transform: rotate(-4deg) translate(0, 4px); }
.fan-group:hover .fan-card:nth-child(2),
.fan-group:focus-within .fan-card:nth-child(2) { transform: rotate(-2deg) translate(0, 1px); }
.fan-group:hover .fan-card:nth-child(3),
.fan-group:focus-within .fan-card:nth-child(3) { transform: rotate(0deg)  translate(0, 0); }
.fan-group:hover .fan-card:nth-child(4),
.fan-group:focus-within .fan-card:nth-child(4) { transform: rotate(2deg)  translate(0, 1px); }
.fan-group:hover .fan-card:nth-child(5),
.fan-group:focus-within .fan-card:nth-child(5) { transform: rotate(4deg)  translate(0, 4px); }

/* ==========================================================================
   Modal de serviço
   ========================================================================== */
.service-modal {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brown-dark);
  color: var(--cream);
  padding: 36px 40px 40px;
  width: min(600px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  position: fixed;
  top: 50%; left: 50%;
  translate: -50% -50%;
  margin: 0;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.service-modal::backdrop {
  background: rgba(21, 20, 15, 0.72);
  backdrop-filter: blur(3px);
}
.modal-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 12px;
}
.service-modal h3 { font-size: 26px; margin-bottom: 10px; }
.modal-lead { color: var(--cream-dim); margin: 0 0 22px; font-size: 16px; }
.service-modal > p:last-child { color: var(--muted); margin: 20px 0 0; font-size: 15px; }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color .2s ease, border-color .2s ease;
}
.modal-close:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ==========================================================================
   Mockups dos serviços (dentro do modal)
   ========================================================================== */
.modal-graphic { margin: 4px 0 4px; }
.mock { border-radius: 12px; overflow: hidden; }

/* --- Site: busca do Google + preview da hero --- */
.mock-site {
  background: var(--brown-dark);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.mock-browser-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.mock-browser-bar span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(242,232,216,0.18);
}
.mock-search {
  background: #ffffff;
  border-radius: 10px;
  padding: 14px;
}
.mock-search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e3e3e3;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 12px;
}
.mock-google { font-family: Arial, sans-serif; font-weight: 700; font-size: 13px; color: #4285F4; }
.mock-search-text { font-family: Arial, sans-serif; font-size: 12px; color: #3c4043; }
.mock-result { padding: 8px 2px; border-bottom: 1px solid #f0f0f0; }
.mock-result:last-child { border-bottom: none; }
.mock-result-url { font-family: Arial, sans-serif; font-size: 11px; color: #202124; margin: 0; }
.mock-result-title { font-family: Arial, sans-serif; font-size: 14px; color: #1a0dab; margin: 2px 0; }
.mock-result-desc { font-family: Arial, sans-serif; font-size: 11.5px; color: #4d5156; margin: 0; }
.mock-tag {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 10px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  padding: 1px 5px;
  margin-bottom: 3px;
}
.mock-result--faded .mock-result-title { color: #4d5156; }
.mock-result--faded .mock-result-url { color: #70757a; }
.mock-hero {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  background: linear-gradient(160deg, rgba(226,98,44,0.12), rgba(29,23,18,0.5));
}
.mock-hero-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--orange);
  border: 1px solid rgba(226,98,44,0.5);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.mock-hero-title { font-family: var(--font-display); color: var(--cream); font-size: 19px; margin: 0 0 6px; }
.mock-hero-sub { color: var(--muted); font-size: 13px; margin: 0 0 14px; }
.mock-hero-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 18px;
}
/* Site: quando é a única peça do modal, dá mais respiro */
.mock-site--solo { background: transparent; border: none; padding: 0; }
.mock-site--solo .mock-hero { margin-top: 0; padding: 34px 26px; }
.mock-site--solo .mock-hero-title { font-size: 22px; }
.mock-site--solo .mock-hero-sub { font-size: 14px; }

/* --- Presença Digital: post de carrossel do IG + ficha do Google Meu Negócio --- */
.mock-presenca { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; }
.mock-ig-card, .mock-gmn-card {
  background: var(--brown);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  flex: 1;
  min-width: 220px;
}
.mock-ig-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.mock-ig-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--brown));
  display: inline-block;
  flex-shrink: 0;
}
.mock-ig-headtext { display: flex; flex-direction: column; line-height: 1.25; }
.mock-ig-name { font-size: 13px; font-weight: 600; color: var(--cream); }
.mock-ig-sponsor { font-size: 10.5px; color: var(--muted); }
.mock-ig-slide {
  aspect-ratio: 1 / 0.85;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, rgba(226,98,44,0.20), rgba(242,232,216,0.04));
}
.mock-ig-eyebrow {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  width: fit-content;
}
.mock-ig-headline { font-family: var(--font-display); color: var(--cream); font-size: 17px; margin: 0 0 6px; line-height: 1.2; }
.mock-ig-sub { color: var(--cream-dim); font-size: 12px; margin: 0; }
.mock-ig-footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mock-ig-icons { display: flex; gap: 10px; color: var(--cream-dim); }
.mock-ig-icons svg { width: 16px; height: 16px; }
.mock-ig-counter { font-size: 11px; color: var(--muted); }
.mock-ig-dots { display: flex; gap: 5px; justify-content: center; }
.mock-ig-dots span { width: 5px; height: 5px; border-radius: 50%; background: rgba(242,232,216,0.25); }
.mock-ig-dots span.on { background: var(--orange); }

.mock-gmn-map {
  height: 78px;
  border-radius: 8px;
  margin-bottom: 12px;
  position: relative;
  background:
    linear-gradient(rgba(242,232,216,0.06) 1px, transparent 1px) 0 0/18px 18px,
    linear-gradient(90deg, rgba(242,232,216,0.06) 1px, transparent 1px) 0 0/18px 18px,
    rgba(242,232,216,0.03);
}
.mock-gmn-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 11px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(226,98,44,0.2);
}
.mock-gmn-name { color: var(--cream); font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.mock-gmn-ok { color: var(--orange); font-size: 12px; }
.mock-gmn-rating { color: var(--cream-dim); font-size: 12.5px; margin: 0 0 4px; }
.mock-gmn-star { color: var(--orange); letter-spacing: 1px; }
.mock-gmn-count { color: var(--muted); }
.mock-gmn-status { color: var(--muted); font-size: 12px; margin: 0 0 2px; }
.mock-gmn-address { color: var(--muted); font-size: 12px; margin: 0 0 12px; }
.mock-gmn-actions { display: flex; gap: 6px; }
.mock-gmn-actions span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 0;
}

/* --- Automações & IA: conversa rápida --- */
.mock-chat {
  background: var(--brown);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-chat-bubble {
  max-width: 82%;
  font-size: 13.5px;
  line-height: 1.5;
  border-radius: 14px;
  padding: 10px 14px;
}
.mock-chat-bubble--in {
  align-self: flex-start;
  background: rgba(242,232,216,0.08);
  color: var(--cream-dim);
  border-bottom-left-radius: 4px;
}
.mock-chat-bubble--out {
  align-self: flex-end;
  background: rgba(226,98,44,0.16);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.mock-chat-time {
  display: block;
  color: var(--orange);
  font-size: 10.5px;
  margin-top: 4px;
}

/* --- CRM: kanban --- */
.mock-kanban {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.mock-kanban-col {
  background: var(--brown);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  min-width: 118px;
  flex: 1;
}
.mock-kanban-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 8px;
}
.mock-kanban-card {
  background: rgba(242,232,216,0.05);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 7px 8px;
  font-size: 12px;
  color: var(--cream);
  margin-bottom: 7px;
}
.mock-kanban-card span {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  margin-top: 2px;
}
.mock-kanban-card--done { border-left-color: #4caf6d; }

/* ==========================================================================
   CTA de fim de seção
   ========================================================================== */
.section-cta {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.section:has(.section-cta) {
  padding-bottom: 56px;
}

/* ==========================================================================
   Sobre
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}
.about-photo {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 18px;
}
.about-photo-glow {
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle at 32% 68%, rgba(226,98,44,0.38), transparent 62%);
  filter: blur(44px);
  z-index: 0;
  pointer-events: none;
}
.about-photo-main {
  position: relative;
  z-index: 1;
  flex: 1 1 58%;
  min-width: 0;
  aspect-ratio: 3 / 5;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  overflow: hidden;
}
.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo-main figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(180deg, transparent, rgba(21,20,15,0.88) 75%);
}
.about-photo-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
}
.about-photo-side {
  position: relative;
  z-index: 1;
  flex: 1 1 38%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-photo-secondary {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 3 / 5;
  margin: 0;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  overflow: hidden;
}
.about-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}
.about-photo-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cream);
  background: rgba(21,20,15,0.7);
  border: 1px solid rgba(226,98,44,0.5);
  border-radius: 999px;
  padding: 4px 10px;
}
.about-photo-rule {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--brown);
  padding: 20px 20px;
}
.about-photo-rule-title {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
}
.about-photo-rule-body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--cream-dim);
}
.about-photo-rule-body strong { color: var(--cream); }
.about-text h2 { margin-bottom: 20px; }
.about-text > p { color: var(--muted); }
.about-text .eyebrow { color: var(--orange); }
.hl { color: var(--cream-dim); }

.about-box {
  margin-top: 30px;
  border: 1px solid rgba(226,98,44, 0.45);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: rgba(226,98,44, 0.05);
}
.about-box-title {
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px;
}
.about-box-body {
  color: var(--cream-dim);
  margin: 0;
  font-size: 16px;
}

/* ==========================================================================
   Como funciona
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  counter-reset: step;
}
.step {
  background: var(--brown);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
  opacity: 0.9;
}
.step h3 { font-size: 22px; margin-bottom: 14px; }
.step p { color: var(--muted); margin: 0; font-size: 16px; }
.step p + p { margin-top: 14px; }
/* frase-tese de cada etapa: um degrau acima do corpo, pra dar entrada na leitura */
.step .step-lead {
  color: var(--cream-dim);
  font-weight: 600;
}
/* fecho do card, empurrado pro rodapé pra alinhar entre os três */
.step .step-out {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--cream-dim);
}
.step-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  font-size: 16px;
  color: var(--muted);
}
.step-list li {
  position: relative;
  padding-left: 18px;
}
.step-list li + li { margin-top: 12px; }
.step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 1px;
  background: var(--orange);
}
.step-list b { color: var(--cream-dim); font-weight: 600; }

/* ==========================================================================
   Feedbacks
   ========================================================================== */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.feedback-card {
  background: var(--brown);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 14px;
}
.feedback-card img {
  width: 100%;
  border-radius: 18px;
  display: block;
}
.feedback-caption {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 4px 4px;
}
.feedback-name {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 700;
}
.feedback-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 30px;
}

/* ==========================================================================
   Portfólio (demos por nicho)
   Cada card é uma "janela de navegador" com o screenshot da hero da demo.
   No hover, a imagem dá um zoom leve (transform-origin no topo) e o card sobe.
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.mockup {
  display: flex;
  flex-direction: column;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius);
}
.mockup:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
.mockup-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-deep);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--brown);
  border-bottom: 1px solid var(--line);
}
.mockup-dots { display: inline-flex; gap: 6px; flex-shrink: 0; }
.mockup-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5a4636;
}
.mockup-dots i:nth-child(1) { background: #E2622C; }
.mockup-dots i:nth-child(2) { background: #C6A15B; }
.mockup-dots i:nth-child(3) { background: #7B9E6E; }
.mockup-url {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 12px;
  background: rgba(21, 20, 15, 0.5);
  border-radius: 999px;
}
.mockup-shot {
  position: relative;
  aspect-ratio: 1600 / 978;
  overflow: hidden;
}
.mockup-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform-origin: top center;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}
.mockup-open {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.mockup:hover .mockup-open,
.mockup:focus-visible .mockup-open {
  opacity: 1;
  transform: translate(-50%, 0);
}
.mockup:hover .mockup-frame,
.mockup:focus-visible .mockup-frame {
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.45);
  border-color: rgba(226, 98, 44, 0.35);
}
.mockup:hover .mockup-shot img,
.mockup:focus-visible .mockup-shot img { transform: scale(1.07); }
.mockup-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 16px;
  background: var(--brown);
  border-top: 1px solid var(--line);
}
.mockup-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cream);
}
.mockup-niche {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: right;
}
/* Card vago: mesma moldura das demos, sem screenshot — convida o visitante
   a se imaginar na vitrine. Leva pra seção de contato, na mesma aba. */
.mockup--placeholder .mockup-shot {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  background:
    radial-gradient(120% 110% at 50% 0%, rgba(226, 98, 44, 0.12), transparent 62%),
    var(--black-deep);
}
.mockup-blank {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 18px;
  border: 1px dashed rgba(226, 98, 44, 0.4);
  border-radius: 8px;
  transition: border-color .3s ease, background-color .3s ease;
}
.mockup--placeholder:hover .mockup-blank,
.mockup--placeholder:focus-visible .mockup-blank {
  border-color: rgba(226, 98, 44, 0.75);
  background-color: rgba(226, 98, 44, 0.05);
}
.mockup-blank-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  color: var(--cream);
}
.mockup-blank-text {
  font-size: 14px;
  color: var(--muted);
  max-width: 26ch;
}
@media (prefers-reduced-motion: reduce) {
  .mockup-frame, .mockup-shot img, .mockup-blank { transition: none; }
}

/* ==========================================================================
   Contato
   ========================================================================== */
.contact {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(226,98,44,0.14), transparent 55%),
    var(--black-deep);
}
.contact .section-title {
  margin: 0 auto 20px;
  max-width: 24ch;
  font-size: clamp(32px, 5vw, 52px);
}
.contact-lead {
  color: var(--muted);
  max-width: 54ch;
  margin: 0 auto 36px;
  font-size: 19px;
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
.footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--brown-dark);
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.footer .brand { font-size: 20px; }
.footer-legal {
  color: var(--cream-dim);
  font-size: 14px;
  margin: 0;
}
.footer small { color: var(--muted); font-size: 13px; }

/* ==========================================================================
   Botão flutuante WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 120;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: scale(1.07);
  box-shadow: 0 14px 34px rgba(37,211,102,0.4);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: "Fale comigo";
  position: absolute;
  right: 72px;
  background: var(--brown);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  border: 1px solid var(--line);
}
.wa-float:hover::after { opacity: 1; transform: translateX(0); }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(21, 20, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    transform: translateY(-140%);
    transition: transform .3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 12px 0; font-size: 17px; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { max-width: 420px; margin: 0 auto; gap: 12px; }
  .about-photo-side { gap: 10px; }
  .about-photo-main figcaption { padding: 16px 16px 14px; }
  .about-photo-name { font-size: 17px; }
  .about-photo-rule { padding: 12px 14px; }
  .about-photo-rule-body { font-size: 12.5px; }
  .about-photo-badge { font-size: 10px; padding: 3px 8px; }
  .steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 26px; margin-top: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }
  .section { padding: 68px 0; }
  .section:has(.section-cta) { padding-bottom: 40px; }
  .section-cta { margin-top: 48px; }
  .hero { padding: calc(var(--header-h) + 60px) 0 80px; }

  /* Sem hover no touch: leque vira coluna simples, já "aberta" */
  .fan-group {
    flex-direction: column;
    align-items: stretch;
    margin-top: 48px;
    gap: 18px;
    padding: 0;
  }
  .fan-card,
  .fan-group .fan-card:nth-child(n),
  .fan-group:hover .fan-card,
  .fan-group:focus-within .fan-card {
    width: 100%;
    height: auto;
    transform: none !important;
    transition: none;
    margin-right: 0;
  }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .container { padding: 0 20px; }
}

/* Acessibilidade — respeitar preferência de menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .marquee-track { animation: none !important; }
}
