/* ============================================================
   MATUTANDO MARKETING — Design System
   Base escura elegante · acento rosa #ff0a54 · faixas claras
   Space Grotesk (títulos) · Manrope (corpo) · Space Mono (detalhes)
   ============================================================ */

:root {
  /* Cores — dark */
  --bg: #0b0a0d;
  --bg-2: #0e0c11;
  --surface: #141118;
  --surface-2: #1a1520;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --txt: #f7f5f8;
  --txt-dim: #c0b8c1;
  --txt-faint: #918798;

  /* Cores — light */
  --light: #faf8fa;
  --light-2: #f3eff3;
  --light-surface: #ffffff;
  --light-line: rgba(23, 18, 27, 0.1);
  --light-txt: #17121b;
  --light-dim: #5c5463;
  --light-faint: #8b8292;

  /* Acento */
  --accent: #ff0a54;
  --accent-soft: #ff5c87;
  --accent-deep: #d10042;
  --accent-glow: rgba(255, 10, 84, 0.32);
  --gradient: linear-gradient(120deg, #ff0a54, #ff6b8f);

  /* Tipografia */
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "Consolas", monospace;

  /* Métricas */
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--txt);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul[class], ol[class] { list-style: none; }
::selection { background: var(--accent); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0;
  font-weight: 600; font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

/* ---------- Container e utilitários ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.center { text-align: center; }
.mt-lg { margin-top: 48px; }
.em { color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(11, 10, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(11, 10, 13, 0.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand img { width: 168px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > a:not(.nav-cta) {
  font-size: 0.92rem; font-weight: 600; color: var(--txt-dim);
  position: relative; padding: 6px 0; transition: color 0.25s var(--ease);
}
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gradient); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.site-nav > a:not(.nav-cta):hover { color: var(--txt); }
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav > a[aria-current="page"] { color: var(--txt); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--txt); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 8px 28px -8px var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(255, 10, 84, 0.5); }
.btn--ghost { border: 1.5px solid var(--line-strong); color: var(--txt); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-soft); transform: translateY(-2px); }
.btn--sm { padding: 10px 22px; font-size: 0.88rem; }
.section--light .btn--ghost { border-color: rgba(23, 18, 27, 0.25); color: var(--light-txt); }
.section--light .btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-note { font-size: 0.85rem; color: var(--txt-faint); margin-top: 12px; }

/* ---------- Seções ---------- */
.section { position: relative; padding: 96px 0 104px; background: var(--bg); }
.section--alt { background: var(--bg-2); }
.section--tight { padding: 72px 0 80px; }
.section--light { background: var(--light); color: var(--light-txt); }
.section--light + .section--light { padding-top: 0; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 18px; }
.section-sub { color: var(--txt-dim); font-size: 1.1rem; max-width: 65ch; }
.section-head--center .section-sub { margin-inline: auto; }
.section--light .section-sub { color: var(--light-dim); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 16px;
}
.section--light .eyebrow { color: var(--accent-deep); }
.eyebrow--dot::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Grids ---------- */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-5px); border-color: rgba(255, 10, 84, 0.4);
  box-shadow: 0 18px 44px -18px rgba(255, 10, 84, 0.25);
}
.card h3 { font-size: 1.18rem; }
.card p { color: var(--txt-dim); font-size: 0.97rem; }
.card .card-link { margin-top: auto; padding-top: 10px; font-weight: 700; font-size: 0.9rem; color: var(--accent-soft); display: inline-flex; align-items: center; gap: 6px; }
.card .card-link::after { content: "→"; transition: transform 0.25s var(--ease); }
.card:hover .card-link::after { transform: translateX(5px); }
a.card { cursor: pointer; }

.section--light .card { background: var(--light-surface); border-color: var(--light-line); box-shadow: 0 4px 18px -10px rgba(23, 18, 27, 0.12); }
.section--light .card:hover { border-color: rgba(255, 10, 84, 0.45); box-shadow: 0 20px 44px -18px rgba(209, 0, 66, 0.22); }
.section--light .card p { color: var(--light-dim); }

.card--accent { border-color: rgba(255, 10, 84, 0.35); background: linear-gradient(160deg, rgba(255, 10, 84, 0.1), rgba(255, 10, 84, 0.02) 55%), var(--surface); }

.card-icon {
  width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; margin-bottom: 6px;
  background: rgba(255, 10, 84, 0.12); color: var(--accent-soft);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); background: var(--accent); color: #fff; }
.section--light .card-icon { background: rgba(255, 10, 84, 0.1); color: var(--accent-deep); }
.section--light .card:hover .card-icon { background: var(--accent); color: #fff; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.bento-item { grid-column: span 1; }
.bento-item--wide { grid-column: span 2; }
.bento-item--tall { grid-row: span 2; }
@media (max-width: 1020px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-item, .bento-item--wide { grid-column: span 1; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 72px) 0 40px;
  min-height: 100dvh; display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto;  height: 90%;
  background:
    radial-gradient(46% 42% at 78% 30%, rgba(255, 10, 84, 0.16), transparent 70%),
    radial-gradient(38% 34% at 12% 76%, rgba(255, 10, 84, 0.08), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 38%, #000 30%, transparent 100%);
  mask-image: radial-gradient(75% 65% at 50% 38%, #000 30%, transparent 100%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); line-height: 1.04; letter-spacing: -0.03em; margin-bottom: 22px; }
.hero-sub { color: var(--txt-dim); font-size: 1.14rem; max-width: 58ch; margin-bottom: 34px; }

.hero-visual { position: relative; min-height: 380px; }
.hero-photo {
  width: 100%; height: 100%; min-height: 380px; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.hero-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(20, 17, 24, 0.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt);
  padding: 10px 18px;
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.7);
  animation: float 6s ease-in-out infinite;
}
.hero-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero-chip:nth-of-type(2) { animation-delay: -1.6s; }
.hero-chip:nth-of-type(3) { animation-delay: -3.1s; }
.hero-chip:nth-of-type(4) { animation-delay: -4.4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-dim);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 18px;
  margin-bottom: 26px;
}
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: pulse 2.4s infinite; }

/* ---------- Stats / contadores ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stats--3 { grid-template-columns: repeat(3, 1fr); }
.stat { text-align: center; padding: 26px 14px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.stat-num {
  font-family: var(--font-head); font-variant-numeric: tabular-nums;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; letter-spacing: -0.02em;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1.1;
}
.stat-label { color: var(--txt-faint); font-size: 0.88rem; font-weight: 600; margin-top: 6px; display: block; }
.section--light .stat { background: var(--light-surface); border-color: var(--light-line); }
.section--light .stat-label { color: var(--light-faint); }
.stats-note { font-family: var(--font-mono); font-size: 0.74rem; color: var(--txt-faint); letter-spacing: 0.06em; margin-top: 18px; text-align: center; }
@media (max-width: 900px) { .stats, .stats--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats, .stats--3 { grid-template-columns: 1fr 1fr; gap: 12px; } .stat { padding: 18px 10px; } }

/* ---------- Processo (números fantasma) ---------- */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(5, 1fr); counter-reset: step; }
.step {
  position: relative; padding: 84px 24px 28px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface); overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step:hover { transform: translateY(-5px); border-color: rgba(255, 10, 84, 0.4); }
.step-num {
  position: absolute; top: -14px; left: 12px;
  font-family: var(--font-mono); font-weight: 700; font-size: 5.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 10, 84, 0.4);
  transition: color 0.3s var(--ease);
}
.step:hover .step-num { color: rgba(255, 10, 84, 0.22); }
.step-title { font-size: 1.12rem; margin-bottom: 8px; }
.step-text { color: var(--txt-dim); font-size: 0.94rem; }
.section--light .step { background: var(--light-surface); border-color: var(--light-line); }
.section--light .step-text { color: var(--light-dim); }
@media (max-width: 1020px) { .steps { grid-template-columns: repeat(2, 1fr); } .step:last-child:nth-child(odd) { grid-column: 1 / -1; } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } .step:last-child:nth-child(odd) { grid-column: auto; } }

/* ---------- Marquee de logos ---------- */
.marquee {
  overflow: hidden; position: relative; padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: marquee 48s linear infinite; }
.marquee--reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item img {
  height: 52px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(1) brightness(2.4) opacity(0.55);
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
}
.marquee-item img:hover { filter: none; transform: scale(1.06); }

/* ---------- Depoimentos ---------- */
.quote-card { gap: 16px; }
.quote-stars { color: var(--accent); letter-spacing: 3px; font-size: 0.95rem; }
.quote-card blockquote { color: var(--txt-dim); font-size: 0.99rem; font-style: normal; }
.section--light .quote-card blockquote { color: var(--light-dim); }
.quote-who { margin-top: auto; padding-top: 8px; }
.quote-who strong { display: block; font-family: var(--font-head); font-size: 0.98rem; }
.quote-who span { color: var(--txt-faint); font-size: 0.85rem; }
.section--light .quote-who span { color: var(--light-faint); }

/* ---------- Equipe ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1020px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { padding: 0; overflow: hidden; }
.team-card img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; filter: saturate(0.92); transition: transform 0.45s var(--ease), filter 0.45s var(--ease); }
.team-card:hover img { transform: scale(1.045); filter: saturate(1.05); }
.team-info { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.team-name { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; }
.team-role { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-soft); }
.section--light .team-role { color: var(--accent-deep); }
.team-bio { font-size: 0.9rem; color: var(--txt-dim); }
.section--light .team-bio { color: var(--light-dim); }

/* ---------- Equipe: destaques (CEO / Head) e mini-cards ---------- */
.team-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.team-spotlight { display: grid; grid-template-columns: 220px 1fr; padding: 0; overflow: hidden; }
.team-spotlight > img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; object-position: top; }
.team-spotlight-info { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 10px; }
.team-spotlight .team-name { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; }
.team-spotlight .team-bio { font-size: 0.93rem; }
.badge-role {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: var(--gradient); border-radius: 999px; padding: 5px 14px;
  box-shadow: 0 6px 18px -6px var(--accent-glow);
}
.badge-role::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.team-mini { flex-direction: row; align-items: flex-start; gap: 16px; padding: 22px; }
.team-mini img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid rgba(255, 10, 84, 0.45); flex-shrink: 0; }
.team-mini-info { display: flex; flex-direction: column; gap: 3px; }
.team-mini .team-name { font-size: 1.02rem; }
.team-mini .team-bio { font-size: 0.88rem; }
@media (max-width: 960px) { .team-lead-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) {
  .team-spotlight { grid-template-columns: 1fr; }
  .team-spotlight > img { min-height: 0; aspect-ratio: 4 / 3.4; }
}

/* ---------- Instagram / redes ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.insta-grid a { position: relative; display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.insta-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.45s var(--ease), filter 0.45s var(--ease); }
.insta-grid a::after {
  content: "Ver no Instagram"; position: absolute; inset: auto 0 0 0;
  padding: 34px 14px 12px; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #fff; text-align: center;
  background: linear-gradient(transparent, rgba(11, 10, 13, 0.85));
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.insta-grid a:hover::after { opacity: 1; }
.insta-grid a:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color 0.3s var(--ease); }
.faq-item[open] { border-color: rgba(255, 10, 84, 0.4); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; padding: 20px 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-mono); font-size: 1.4rem; color: var(--accent-soft); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--txt-dim); font-size: 0.97rem; }
.faq-body a { color: var(--accent-soft); font-weight: 600; }
.section--light .faq-item { background: var(--light-surface); border-color: var(--light-line); }
.section--light .faq-body { color: var(--light-dim); }
.section--light .faq-body a { color: var(--accent-deep); }

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 84px) 0 72px;
  background: var(--bg);
}
.page-hero::before {
  content: ""; position: absolute; inset: -30% -10% auto; height: 120%;
  background: radial-gradient(42% 46% at 72% 18%, rgba(255, 10, 84, 0.14), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -0.03em; max-width: 20ch; margin-bottom: 20px; }
.page-hero-sub { color: var(--txt-dim); font-size: 1.12rem; max-width: 62ch; }
.page-hero .btn-row { margin-top: 32px; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-faint); margin-bottom: 22px; }
.breadcrumbs a { color: var(--txt-dim); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent-soft); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--txt-faint); }

/* ---------- CTA final ---------- */
.cta-final { padding: 110px 0 120px; overflow: hidden; position: relative; }
.cta-final::before {
  content: ""; position: absolute; inset: auto -20% -60%; height: 160%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 10, 84, 0.2), transparent 70%);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.cta-final h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 18px; }
.cta-final p { color: var(--txt-dim); font-size: 1.1rem; margin-bottom: 34px; }
.cta-final .btn-row { justify-content: center; }

/* ---------- Formulário ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.88rem; }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 0.97rem; color: var(--txt);
  background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 13px 16px; width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select { appearance: none; 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='%23ff5c87' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 10, 84, 0.18);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--txt-faint); }
.form-note { font-size: 0.85rem; color: var(--txt-faint); }
.form-note a { color: var(--accent-soft); }
.form-status { display: none; border-radius: 12px; padding: 16px 20px; font-weight: 600; font-size: 0.95rem; }
.form-status.ok { display: block; background: rgba(37, 211, 102, 0.12); border: 1px solid rgba(37, 211, 102, 0.4); color: #7ce8a8; }
.form-status.err { display: block; background: rgba(255, 10, 84, 0.1); border: 1px solid rgba(255, 10, 84, 0.4); color: var(--accent-soft); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Artigo (blog) ---------- */
.article-body { max-width: 720px; margin-inline: auto; }
.article-body > * + * { margin-top: 1.2em; }
.article-body h2 { font-size: 1.7rem; margin-top: 2em; }
.article-body h3 { font-size: 1.25rem; margin-top: 1.6em; }
.article-body p, .article-body li { color: var(--txt-dim); font-size: 1.04rem; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li::marker { color: var(--accent); }
.article-body a { color: var(--accent-soft); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { color: var(--txt); }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 6px 0 6px 22px; font-style: italic; color: var(--txt); }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-faint); }
.article-tag { display: inline-block; border: 1px solid rgba(255, 10, 84, 0.4); color: var(--accent-soft); border-radius: 999px; padding: 3px 12px; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

.post-card { padding: 0; overflow: hidden; }
.post-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card .article-tag { align-self: flex-start; }
.post-card h3 { font-size: 1.16rem; }

/* ---------- Footer ---------- */
.site-footer { background: #070609; border-top: 1px solid var(--line); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { width: 180px; margin-bottom: 18px; }
.footer-brand p { color: var(--txt-faint); font-size: 0.93rem; max-width: 34ch; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { font-weight: 700; font-size: 0.88rem; color: var(--txt-dim); transition: color 0.2s; }
.footer-social a:hover { color: var(--accent-soft); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h3 { font-size: 0.82rem; font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-faint); margin-bottom: 8px; }
.footer-col a { color: var(--txt-dim); font-size: 0.93rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-col p { color: var(--txt-dim); font-size: 0.93rem; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--txt-faint); font-size: 0.84rem; }
.footer-bottom a { color: var(--txt-dim); }
.footer-bottom a:hover { color: var(--accent-soft); }
@media (max-width: 1020px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- FAB WhatsApp ---------- */
.fab-whats {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fab-whats:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 38px -8px rgba(37, 211, 102, 0.65); }

/* ---------- Reveal (progressive enhancement — só com JS) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
html.js [data-reveal-delay="1"] { transition-delay: 0.08s; }
html.js [data-reveal-delay="2"] { transition-delay: 0.16s; }
html.js [data-reveal-delay="3"] { transition-delay: 0.24s; }
html.js [data-reveal-delay="4"] { transition-delay: 0.32s; }
html.js [data-reveal-delay="5"] { transition-delay: 0.4s; }
html.js [data-reveal-delay="6"] { transition-delay: 0.48s; }

/* ---------- Responsivo: header/nav mobile ---------- */
@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.nav-cta) { font-size: 0.86rem; }
}
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(11, 10, 13, 0.98);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .site-nav > a:not(.nav-cta) { font-size: 1.05rem; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav > a[aria-current="page"] { color: var(--accent-soft); }
  .nav-cta { margin-top: 16px; justify-content: center; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero-visual { min-height: 300px; }
  .hero-photo { min-height: 300px; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0 76px; }
  .section-head { margin-bottom: 38px; }
  .container { padding-inline: 18px; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .nav-cta { width: auto; }
  .brand img { width: 140px; }
  .cta-final { padding: 84px 0 92px; }
}

/* ---------- Acessibilidade: reduzir movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .marquee-track > *:nth-child(n+22) { display: none; }
}
