/* =====================================================================
   Agência Metrika — Estilos globais
   Identidade: gradiente ciano (#41BCEE) → azul (#356AB2) → roxo (#3F4294)
   Inspiração de layout/animações: boostique-agency.webflow.io
   ===================================================================== */

:root {
  --cyan: #3ea9e0;
  --cyan-bright: #41bcee;
  --blue: #356ab2;
  --purple: #3f4294;
  --purple-deep: #2a2c63;

  --ink: #0b0e1f;
  --ink-soft: #141833;
  --text: #1c2033;
  --muted: #5b6178;
  --line: #e7e9f2;
  --bg: #ffffff;
  --bg-alt: #f5f6fc;

  --grad: linear-gradient(120deg, var(--cyan-bright) 0%, var(--blue) 52%, var(--purple) 100%);
  --grad-soft: linear-gradient(120deg, rgba(65, 188, 238, .12), rgba(63, 66, 148, .12));
  --grad-text: linear-gradient(90deg, #41bcee 0%, #6a6fd6 100%);

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 22px 60px -28px rgba(20, 24, 51, .35);
  --shadow-sm: 0 10px 30px -18px rgba(20, 24, 51, .4);
  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --------------------------------------------------------------- Botões */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 16px 34px -14px rgba(56, 122, 190, .7); }
.btn--primary:hover { box-shadow: 0 22px 42px -14px rgba(56, 122, 190, .85); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--purple); box-shadow: var(--shadow-sm); }
.btn--outline { background: transparent; color: var(--purple); border-color: var(--line); }
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* ================================================================ HEADER */
#site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav {
  display: flex; align-items: center; gap: 22px;
  padding: 20px 24px; transition: padding .35s;
}
#site-header.scrolled { background: rgba(11, 14, 31, .82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255, 255, 255, .06); }
#site-header.scrolled .nav { padding-top: 12px; padding-bottom: 12px; }

.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { flex: none; filter: drop-shadow(0 6px 14px rgba(65, 188, 238, .4)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: "Space Grotesk", sans-serif; font-size: 1.32rem; color: #fff; letter-spacing: -.01em; }
.brand__text em { font-style: normal; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 8px; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__list > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px;
  color: rgba(255, 255, 255, .82); font-weight: 500; font-size: .94rem;
  transition: color .25s, background .25s;
}
.nav__list > li > a:hover, .nav__list a.is-active { color: #fff; background: rgba(255, 255, 255, .08); }
.caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .7; transition: transform .25s; }

.has-sub { position: relative; }
.sub {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 268px; list-style: none; padding: 10px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.has-sub:hover .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.has-sub:hover .caret { transform: rotate(225deg) translateY(0); }
.sub li a {
  display: block; padding: 11px 14px; border-radius: 10px;
  color: var(--text); font-size: .92rem; font-weight: 500;
  transition: background .2s, color .2s, padding-left .2s;
}
.sub li a:hover { background: var(--grad-soft); color: var(--purple); padding-left: 18px; }

.nav__cta { padding: 11px 20px; }
.nav__cta-mobile { display: none; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.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; overflow: hidden;
  background: radial-gradient(120% 120% at 80% -10%, #1b2150 0%, var(--ink) 45%, #07091a 100%);
  color: #fff; padding: 190px 0 130px;
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 0; }
.hero__blob--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(65, 188, 238, .8), transparent 70%); top: -120px; right: -80px; animation: float1 14s ease-in-out infinite; }
.hero__blob--2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(63, 66, 148, .9), transparent 70%); bottom: -160px; left: -100px; animation: float2 18s ease-in-out infinite; }
.hero__grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%); z-index: 0; }

.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  font-size: .82rem; color: rgba(255, 255, 255, .9);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #38d39f; box-shadow: 0 0 0 4px rgba(56, 211, 159, .25); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); color: #fff; margin-bottom: 22px; }
.hero h1 .grad-text { background: linear-gradient(90deg, #5fd0ff, #9a8cff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255, 255, 255, .8); max-width: 640px; margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; }
.hero__stat strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 2.1rem; color: #fff; }
.hero__stat span { font-size: .9rem; color: rgba(255, 255, 255, .65); }

@keyframes float1 { 50% { transform: translate(-30px, 40px) scale(1.08); } }
@keyframes float2 { 50% { transform: translate(40px, -30px) scale(1.1); } }

/* ----------------------------------------------------- Marquee de cidades */
.marquee { background: var(--ink-soft); color: #fff; padding: 18px 0; overflow: hidden; border-top: 1px solid rgba(255, 255, 255, .06); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: scroll 26s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 12px; font-weight: 500; color: rgba(255, 255, 255, .72); font-size: .95rem; }
.marquee__track span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-bright); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================== Seções */
.section { padding: 110px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section__head.left { margin-left: 0; text-align: left; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section__head p { color: var(--muted); font-size: 1.08rem; }

/* --------------------------------------------------------- Cards serviços */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px 32px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.svc::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity .4s; z-index: 0; }
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::before { opacity: 1; }
.svc > * { position: relative; z-index: 1; transition: color .4s; }
.svc:hover :is(h3, p, .svc__icon, .svc__link) { color: #fff; }
.svc__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--blue); margin-bottom: 22px;
  transition: background .4s, color .4s;
}
.svc:hover .svc__icon { background: rgba(255, 255, 255, .18); }
.svc h3 { font-size: 1.4rem; margin-bottom: 12px; }
.svc p { color: var(--muted); margin-bottom: 20px; font-size: .98rem; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.svc__tags span { font-size: .78rem; padding: 5px 11px; border-radius: 999px; background: var(--bg-alt); color: var(--muted); transition: background .4s, color .4s; }
.svc:hover .svc__tags span { background: rgba(255, 255, 255, .16); color: #fff; }
.svc__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--blue); font-size: .92rem; }
.svc__link svg { transition: transform .3s; }
.svc:hover .svc__link svg { transform: translateX(5px); }

/* --------------------------------------------------------------- Processo */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step__num { font-family: "Space Grotesk", sans-serif; font-size: 3.4rem; font-weight: 700; line-height: 1; -webkit-text-stroke: 1.5px var(--cyan); color: transparent; margin-bottom: 18px; }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--muted); }
.step::after { content: ""; position: absolute; top: 34px; left: 70px; right: -30px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.process .step:last-child::after { display: none; }

/* ---------------------------------------------------------- Projetos grid */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-end; color: #fff;
  transition: transform .4s var(--ease);
}
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7, 9, 26, .85)); z-index: 1; }
.project:hover { transform: translateY(-6px); }
.project__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
img.project__bg { width: 100%; height: 100%; object-fit: cover; }
.project:hover .project__bg { transform: scale(1.08); }
.project__body { position: relative; z-index: 2; padding: 24px; }
.project__body span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-bright); }
.project__body h3 { color: #fff; font-size: 1.18rem; margin-top: 4px; }

/* --------------------------------------------------- Diferencial / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5 / 6; background: var(--bg-alt); box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .badge-float {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  background: rgba(11, 14, 31, .72); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .14); border-radius: 16px; padding: 18px 20px; color: #fff;
}
.split__media .badge-float strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.6rem; }
.split__media .badge-float span { font-size: .85rem; color: rgba(255, 255, 255, .75); }
.split h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 20px; }
.split p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.checklist { list-style: none; margin: 24px 0 32px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.checklist li svg { flex: none; color: var(--cyan); margin-top: 3px; }

/* ----------------------------------------------------------- Depoimentos */
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 46px; }
.google-score { display: flex; align-items: center; gap: 16px; }
.google-score__num { font-family: "Space Grotesk", sans-serif; font-size: 2.8rem; line-height: 1; color: var(--ink); }
.stars { color: #f6b01e; letter-spacing: 2px; font-size: 1.1rem; }
.google-score small { color: var(--muted); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .35s var(--ease), box-shadow .35s; }
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.review .stars { font-size: .95rem; margin-bottom: 12px; }
.review p { color: var(--text); margin-bottom: 20px; font-size: .97rem; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 600; }
.review__author strong { display: block; font-size: .95rem; }
.review__author span { font-size: .82rem; color: var(--muted); }

/* ================================================================ FOOTER */
.footer__cta { padding: 70px 0; background: var(--grad); position: relative; overflow: hidden; }
.footer__cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 140% at 100% 0%, rgba(255, 255, 255, .22), transparent 60%); }
.footer__cta-inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; color: #fff; }
.footer__cta h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 8px; }
.footer__cta p { color: rgba(255, 255, 255, .9); max-width: 520px; }

#site-footer { background: var(--ink); color: rgba(255, 255, 255, .68); }
.footer__main { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; padding-top: 70px; padding-bottom: 56px; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { font-size: .95rem; max-width: 360px; margin-bottom: 22px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255, 255, 255, .07); color: #fff; transition: background .3s, transform .3s; }
.footer__social a:hover { background: var(--grad); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; margin-top: 26px; }
.footer__col h4:first-child { margin-top: 0; }
.footer__col ul { list-style: none; display: grid; gap: 9px; }
.footer__col ul a, .footer__contact li { font-size: .92rem; color: rgba(255, 255, 255, .62); transition: color .25s; }
.footer__col ul a:hover { color: var(--cyan-bright); }
.footer__contact li { line-height: 1.5; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .85rem; color: rgba(255, 255, 255, .5); }
.footer__bottom ul { display: flex; gap: 20px; list-style: none; }
.footer__bottom a:hover { color: #fff; }

/* ----------------------------------------------------- WhatsApp flutuante */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .6);
  animation: pulse 2.4s infinite; transition: transform .3s;
}
.whats-float:hover { transform: scale(1.08); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5), 0 14px 30px -8px rgba(37, 211, 102, .6); } 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 14px 30px -8px rgba(37, 211, 102, .6); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 14px 30px -8px rgba(37, 211, 102, .6); } }

/* ------------------------------------------------- Animação scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } * { animation: none !important; } }

/* ===================================================================
   COMPONENTES DE SUBPÁGINAS (criação de sites, etc.)
   =================================================================== */

/* Hero interno (mais baixo que a home) */
.hero--inner { padding: 170px 0 96px; }
.hero--inner .hero__inner { max-width: 760px; }
.hero--inner h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }

/* Breadcrumb */
.breadcrumb { position: relative; z-index: 2; font-size: .85rem; margin-bottom: 22px; color: rgba(255, 255, 255, .6); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb a { color: rgba(255, 255, 255, .7); transition: color .2s; }
.breadcrumb a:hover { color: var(--cyan-bright); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: .4; }
.breadcrumb [aria-current] { color: #fff; }

/* ----------------------------------------------- Mosaico de portfólio */
.portfolio { columns: 3; column-gap: 22px; }
.pcard {
  break-inside: avoid; margin-bottom: 22px; position: relative;
  border-radius: var(--radius); overflow: hidden; display: block;
  box-shadow: var(--shadow-sm); background: var(--bg-alt);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard img { width: 100%; display: block; transition: transform .6s var(--ease); }
.pcard:hover img { transform: scale(1.05); }
.pcard__overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: #fff; opacity: 0;
  background: linear-gradient(180deg, rgba(11, 14, 31, 0) 40%, rgba(11, 14, 31, .9));
  transition: opacity .4s var(--ease);
}
.pcard:hover .pcard__overlay { opacity: 1; }
.pcard__overlay strong { font-family: "Space Grotesk", sans-serif; font-size: 1.12rem; }
.pcard__overlay span { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--cyan-bright); margin-top: 4px; }
.pcard__overlay span svg { transition: transform .3s; }
.pcard:hover .pcard__overlay span svg { transform: translateX(4px); }

/* Variante de 2 colunas (plataformas: Google Ads / Meta Ads) */
.services--duo { grid-template-columns: repeat(2, 1fr); }
.services--duo .svc { padding: 42px 38px; }

/* Faixa de números/resultados */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-box { text-align: center; padding: 28px 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.stat-box strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 2.4rem; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-box span { display: block; margin-top: 8px; color: var(--muted); font-size: .92rem; }

/* ------------------------------------------------- Grade de recursos */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: border-color .3s, transform .3s var(--ease); }
.feature:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--shadow-sm); }
.feature__icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-soft); color: var(--blue); margin-bottom: 18px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ------------------------------------------------------ SEO local */
.local-seo { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.local-seo .prose p { color: var(--muted); margin-bottom: 16px; font-size: 1.04rem; }
.local-seo .prose strong { color: var(--text); }
.cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.city-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .3s var(--ease), box-shadow .3s; }
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.city-card h3 { font-size: 1.1rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.city-card h3 svg { color: var(--cyan); }
.city-card p { color: var(--muted); font-size: .9rem; }

/* ------------------------------------------------------------ FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 44px 24px 0; position: relative; font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.faq__q::after { content: ""; position: absolute; right: 6px; top: 28px; width: 11px; height: 11px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg); transition: transform .3s; }
.faq__item.open .faq__q::after { transform: rotate(-135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 0 24px; color: var(--muted); }

/* ----------------------------------------------- Páginas legais/texto */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--blue); text-decoration: underline; }
.legal .updated { font-size: .85rem; color: var(--muted); margin-bottom: 30px; }

/* ----------------------------------------------------- Citação/história */
.quote-block { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-block blockquote { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.3rem, 2.8vw, 1.9rem); line-height: 1.4; color: var(--ink); font-weight: 500; }
.quote-block blockquote span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.quote-block cite { display: block; margin-top: 24px; font-style: normal; font-weight: 600; color: var(--blue); }
.quote-block cite small { display: block; color: var(--muted); font-weight: 400; font-size: .85rem; }

/* ----------------------------------------------------- Faixa de CTA */
.cta-band { background: var(--grad); position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 64px 56px; text-align: center; color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 130% at 0% 0%, rgba(255, 255, 255, .22), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .92); max-width: 560px; margin: 0 auto 28px; }

@media (max-width: 960px) {
  .portfolio { columns: 2; }
  .features { grid-template-columns: 1fr 1fr; }
  .local-seo { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .portfolio { columns: 1; }
  .features { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 26px; }
}

/* ============================================================ Responsivo */
@media (max-width: 960px) {
  .services, .process, .projects, .reviews { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__media { aspect-ratio: 16 / 11; }
  .step::after { display: none; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--ink-soft); padding: 100px 26px 40px;
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0, 0, 0, .6);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav__list > li > a { padding: 14px 12px; font-size: 1.02rem; }
  .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0 0 8px 14px; min-width: 0; }
  .sub li a { color: rgba(255, 255, 255, .6); padding: 9px 12px; }
  .sub li a:hover { background: rgba(255, 255, 255, .06); color: #fff; padding-left: 16px; }
  .caret { display: none; }
  .nav__cta-mobile { display: inline-flex; justify-content: center; margin-top: 18px; }
  .section { padding: 76px 0; }
  .hero { padding: 150px 0 90px; }
  .hero__stats { gap: 28px; }
}
@media (max-width: 560px) {
  .services, .process, .projects, .reviews, .footer__main { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}
