/* ==========================================================================
   BrasilSYS — Design System
   Grafite quase-preto + laranja de assinatura. Tipografia grande e confiante,
   micro-detalhes de precisão (cantos, linhas, contadores). Bandeira do Brasil
   aparece só como acento pontual (nunca como cor de UI).
   ========================================================================== */

:root {
  /* Cor */
  --bg: #0b0b0c;
  --bg-alt: #131314;
  --surface: #18181b;
  --surface-2: #202024;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f2ef;
  --text-dim: #a5a4a8;
  --text-faint: #6b6a6f;

  --accent: #ff5e1a;
  --accent-2: #ff8a4c;
  --accent-soft: rgba(255, 94, 26, 0.13);
  --accent-ink: #1a0d06;

  --br-green: #0fa958;
  --br-blue: #1450a3;
  --br-yellow: #ffd400;

  --danger: #e5484d;
  --success: #2fb866;

  /* Tipografia */
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(2.6rem, 2.1rem + 4.6vw, 7.2rem);
  --fs-h2: clamp(2rem, 1.5rem + 2.6vw, 3.75rem);
  --fs-h3: clamp(1.4rem, 1.2rem + 1.2vw, 2.1rem);
  --fs-h4: clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  --fs-lead: clamp(1.05rem, .95rem + .6vw, 1.4rem);
  --fs-body: 1rem;
  --fs-small: .875rem;
  --fs-label: .75rem;

  --lh-tight: 1.02;
  --ls-tight: -0.03em;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 1rem + 2vw, 3rem);
  --section-pad: clamp(4rem, 3rem + 5vw, 8rem);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
img { border-radius: var(--radius-sm); }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  font-weight: 600;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* -------------------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------------------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-pad); position: relative; }
.section-tight { padding-block: calc(var(--section-pad) * .55); }
.section-alt { background: var(--bg-alt); }
.grid { display: grid; gap: clamp(1.25rem, 1rem + 1.5vw, 2.5rem); }
.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: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.stack { display: flex; flex-direction: column; }
.gap-sm { gap: .5rem; } .gap-md { gap: 1rem; } .gap-lg { gap: 2rem; }

/* -------------------------------------------------------------------------
   Tipografia utilitária
   ------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-size: var(--fs-label); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; }
.h-hero { font-size: var(--fs-hero); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }
.h4 { font-size: var(--fs-h4); }
.lead { font-size: var(--fs-lead); color: var(--text-dim); font-weight: 400; max-width: 46ch; }
.text-dim { color: var(--text-dim); }
.text-faint { color: var(--text-faint); }
.text-accent { color: var(--accent); }
.center { text-align: center; margin-inline: auto; }

/* -------------------------------------------------------------------------
   Botões
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95em 1.6em; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border: 1px solid transparent; background: transparent; appearance: none;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #140902; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-outline { border-color: var(--line-strong); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ghost { color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1em 2em; font-size: 1.05rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

/* -------------------------------------------------------------------------
   Header / navegação
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

/* Linha utilitária (idiomas, login, orçamento) */
.header-utility { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.header-utility .container { padding-block: .5rem; }
.utility-right { display: flex; align-items: center; gap: 1.1rem; }
.utility-link { font-size: .8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .04em; transition: color .2s; }
.utility-link:hover { color: var(--accent); }
.btn-sm { padding: .5em 1.1em; font-size: .8rem; }

/* Linha principal (logo + navegação) */
.header-main .container { display: flex; align-items: center; justify-content: space-between; padding-block: .85rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.brand img { width: 34px; height: 34px; object-fit: contain; border-radius: 0; filter: drop-shadow(0 0 0 transparent); }
.brand span { letter-spacing: -.01em; }
.nav-main { display: flex; align-items: center; gap: 2.1rem; }
.nav-main a:not(.btn) {
  font-size: .88rem; font-weight: 500; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .05em; transition: color .2s;
  position: relative;
}
.nav-main a:not(.btn):hover { color: var(--text); }
.nav-main a.active { color: var(--accent); }
.lang-switch { display: flex; gap: .35rem; font-size: .78rem; color: var(--text-faint); text-transform: uppercase; }
.lang-switch a { padding: .2em .4em; border-radius: 4px; }
.lang-switch a.active { color: var(--accent); font-weight: 700; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.6rem; }

@media (max-width: 980px) {
  .header-utility .container { padding-block: .4rem; }
  .utility-right { gap: .6rem; }
  .utility-link { font-size: .74rem; }
  .btn-sm { padding: .5em; }
  .btn-sm span.btn-label-full { display: none; }
  .nav-main { position: fixed; inset: 102px 0 0 0; background: var(--bg); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 2.5rem var(--gutter); gap: 1.6rem; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .3s var(--ease); border-top: 1px solid var(--line); overflow-y: auto; }
  .nav-main.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-main a:not(.btn) { font-size: 1.3rem; }
  .nav-toggle { display: block; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero { padding-block: clamp(3rem, 2rem + 6vw, 7rem) clamp(2.5rem, 2rem + 3vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: end; }
.hero h1 { margin-block: 1.1rem 1.4rem; }
.hero-side { border-left: 1px solid var(--line); padding-left: clamp(1.25rem, 1rem + 1vw, 2rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.hero-price-tag { display: inline-flex; align-items: baseline; gap: .4em; margin-top: 1.5rem; font-family: var(--font-display); }
.hero-price-tag .amount { font-size: 1.9rem; color: var(--accent); font-weight: 700; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.5rem; }
}

/* -------------------------------------------------------------------------
   Ticker (cidades atendidas / marcas)
   ------------------------------------------------------------------------- */
.ticker-wrap { border-block: 1px solid var(--line); overflow: hidden; background: var(--bg-alt); }
.ticker { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: .9rem; padding: 1.1rem clamp(1.5rem, 1rem + 2vw, 3rem); font-family: var(--font-display); font-size: clamp(1.1rem, 1rem + .8vw, 1.6rem); color: var(--text-faint); white-space: nowrap; }
.ticker-item::after { content: "•"; color: var(--accent); margin-left: .9rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------------------------------------------
   Cards com cantos (crop marks) — assinatura visual
   ------------------------------------------------------------------------- */
.corner-frame { position: relative; }
.corner-frame::before, .corner-frame::after,
.corner-frame > .cf-br::before, .corner-frame > .cf-br::after { content: ""; position: absolute; width: 16px; height: 16px; border: 2px solid var(--accent); opacity: .8; }
.corner-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.corner-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* -------------------------------------------------------------------------
   Serviços (bloco alternado texto / ilustração)
   ------------------------------------------------------------------------- */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); border-top: 1px solid var(--line); }
.service-block:nth-child(even) .service-visual { order: -1; }
.service-list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.4rem; }
.service-list li { display: flex; align-items: center; gap: .7rem; color: var(--text-dim); font-size: .95rem; }
.service-list svg { flex-shrink: 0; color: var(--accent); }
.service-visual { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.service-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
@media (max-width: 860px) {
  .service-block, .service-block:nth-child(even) { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-visual { order: 0; }
}

/* Cards de serviço (grid resumo, home) */
.svc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(1.5rem, 1.2rem + 1vw, 2.25rem); transition: border-color .25s, transform .25s; }
.svc-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.svc-card .icon { width: 46px; height: 46px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.svc-card h3 { margin-bottom: .6rem; }
.svc-card p { color: var(--text-dim); font-size: .95rem; }
.svc-card a.card-link { display: inline-flex; align-items: center; gap: .4em; margin-top: 1rem; color: var(--accent); font-size: .9rem; font-weight: 600; }

/* -------------------------------------------------------------------------
   Preços
   ------------------------------------------------------------------------- */
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(1.75rem, 1.4rem + 1vw, 2.5rem); display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--surface) 60%); }
.price-card .tag { position: absolute; top: -13px; right: 1.75rem; background: var(--accent); color: var(--accent-ink); font-size: .72rem; font-weight: 700; padding: .3em .8em; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.price-card .from { font-size: .8rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .06em; }
.price-card .price { font-family: var(--font-display); font-size: clamp(2.1rem, 1.8rem + 1vw, 2.75rem); margin-block: .2rem .1rem; }
.price-card .price span { font-size: 1rem; color: var(--text-dim); font-family: var(--font-body); font-weight: 500; }
.price-card ul { margin-block: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .65rem; }
.price-card li { display: flex; gap: .6rem; font-size: .92rem; color: var(--text-dim); }
.price-card li svg { color: var(--accent); flex-shrink: 0; margin-top: .15em; }
.price-card .btn { margin-top: auto; }

/* -------------------------------------------------------------------------
   Como funciona (steps)
   ------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.step { background: var(--bg); padding: clamp(1.5rem, 1.2rem + 1vw, 2.25rem); }
.step .num { font-family: var(--font-display); font-size: .85rem; color: var(--accent); font-weight: 700; }
.step h4 { margin-block: .8rem .5rem; }
.step p { color: var(--text-dim); font-size: .9rem; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   Portfólio
   ------------------------------------------------------------------------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 1rem + 1vw, 2rem); }
@media (max-width: 980px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } }
.pf-card { position: relative; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.pf-card .pf-img { aspect-ratio: 16/10; overflow: hidden; }
.pf-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pf-card:hover img { transform: scale(1.05); }
.pf-card .pf-body { padding: 1.3rem 1.4rem 1.5rem; }
.pf-card .pf-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }
.pf-card h3 { font-size: 1.15rem; margin-block: .4rem .3rem; }
.pf-card p { font-size: .88rem; color: var(--text-dim); }
.pf-card .pf-link { position: absolute; inset: 0; z-index: 2; }

/* -------------------------------------------------------------------------
   Depoimentos
   ------------------------------------------------------------------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 1rem + 1vw, 1.75rem); }
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(1.5rem, 1.2rem + 1vw, 2rem); display: flex; flex-direction: column; height: 100%; }
.testimonial-card .stars { color: var(--accent); font-size: 1rem; letter-spacing: .1em; margin-bottom: .9rem; }
.testimonial-card p.quote { color: var(--text-dim); font-size: .95rem; line-height: 1.6; flex: 1; }
.testimonial-card .author { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.testimonial-card .author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author .avatar-fallback { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.testimonial-card .author strong { display: block; font-size: .9rem; }
.testimonial-card .author span { display: block; font-size: .78rem; color: var(--text-faint); }

/* -------------------------------------------------------------------------
   FAQ (accordion)
   ------------------------------------------------------------------------- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: 0; text-align: left; padding: 1.3rem 0; font-family: var(--font-display); font-size: clamp(1rem, .95rem + .3vw, 1.2rem); color: var(--text); }
.faq-q .plus { font-size: 1.4rem; color: var(--accent); transition: transform .3s var(--ease); flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 1.4rem; color: var(--text-dim); max-width: 65ch; }

/* -------------------------------------------------------------------------
   Notícias / blog
   ------------------------------------------------------------------------- */
.news-card { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--surface); display: flex; flex-direction: column; }
.news-card .news-img { aspect-ratio: 16/10; overflow: hidden; }
.news-card img { width: 100%; height: 100%; object-fit: cover; }
.news-card .news-body { padding: 1.3rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.news-card .news-date { font-size: .78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; }
.news-card h3 { font-size: 1.1rem; }
.news-card p { font-size: .9rem; color: var(--text-dim); flex: 1; }

/* -------------------------------------------------------------------------
   Formulário
   ------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.15rem; }
.field label { font-size: .82rem; color: var(--text-dim); }
.field input, .field textarea, .field select {
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: .85em 1em; color: var(--text); transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.form-alert { padding: 1em 1.2em; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 1.3rem; }
.form-alert.success { background: rgba(47,184,102,.12); border: 1px solid rgba(47,184,102,.4); color: #7de3a3; }
.form-alert.error { background: rgba(229,72,77,.12); border: 1px solid rgba(229,72,77,.4); color: #ff9a9d; }

/* -------------------------------------------------------------------------
   Contato / footer
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 3vw, 4rem); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: .9rem; padding-block: 1rem; border-top: 1px solid var(--line); }
.contact-info-item .icon { color: var(--accent); flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: .95rem; }
.contact-info-item span { color: var(--text-dim); font-size: .9rem; }

.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 2rem + 3vw, 5rem) 2rem; background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin-bottom: 1.1rem; }
.footer-col a, .footer-col address { display: block; color: var(--text-dim); font-size: .92rem; margin-bottom: .65rem; font-style: normal; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--text-faint); }
.footer-wordmark { font-family: var(--font-display); font-size: clamp(2.5rem, 2rem + 6vw, 7rem); font-weight: 700; color: var(--surface-2); letter-spacing: -.03em; line-height: 1; text-align: center; margin-block: 2rem 1rem; user-select: none; }

/* WhatsApp float button */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; color: var(--accent-ink);
  box-shadow: 0 8px 24px rgba(0,0,0,.4); transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: var(--text-faint); padding-block: 1.25rem; }
.breadcrumb a { color: var(--text-dim); } .breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.sep { color: var(--text-faint); }

/* Badge cidade / categoria */
.badge { display: inline-flex; align-items: center; gap: .4em; font-size: .75rem; padding: .35em .8em; border-radius: 999px; background: var(--surface-2); color: var(--text-dim); border: 1px solid var(--line); }

/* Divider com label central */
.divider-label { display: flex; align-items: center; gap: 1rem; color: var(--text-faint); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-block: 2rem; }
.divider-label::before, .divider-label::after { content: ""; height: 1px; background: var(--line); flex: 1; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* City strip (áreas atendidas) */
.city-chip-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.city-chip { border: 1px solid var(--line); border-radius: 999px; padding: .6em 1.2em; font-size: .88rem; color: var(--text-dim); transition: all .2s; }
.city-chip:hover { border-color: var(--accent); color: var(--accent); }
