/* =========================================================
   Faro — estilos da landing page
   Paleta e tipografia vindas da identidade visual (Montserrat,
   navy #0F1620, off-white #E6E3DD, verde-lima #A6C639).
   ========================================================= */

:root {
  --navy: #0F1620;
  --navy-2: #182230;
  --navy-3: #222E3E;
  --ink: #0F1620;
  --ink-soft: #3B4452;
  --gray: #8C8C8C;
  --line: rgba(15, 22, 32, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --paper: #E6E3DD;
  --paper-2: #F3F1ED;
  --white: #FFFFFF;
  --lime: #A6C639;
  --lime-dark: #8FAF2A;
  --lime-soft: rgba(166, 198, 57, 0.16);

  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1160px;
  --header-h: 76px;
  --shadow: 0 18px 50px rgba(15, 22, 32, 0.10);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
strong { font-weight: 700; }

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

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--lime { color: var(--lime); }

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 22ch;
  margin-bottom: 18px;
}
.section__title em { font-style: italic; font-weight: 600; color: var(--lime); }
.section__sub { max-width: 60ch; color: var(--ink-soft); font-size: 17px; }
.section--dark .section__sub { color: rgba(255,255,255,0.72); }
.muted { color: var(--gray); font-weight: 600; }
.hl { color: var(--lime); }

.footnote { font-size: 14px; color: var(--gray); margin-top: 20px; max-width: 60ch; }

/* ---------- Seções ---------- */
.section { padding-block: clamp(64px, 9vw, 112px); }
.section--dark { background: var(--navy); color: var(--white); }
.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--lime); color: var(--navy); border-color: var(--lime); }
.btn--primary:hover { background: var(--lime-dark); border-color: var(--lime-dark); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn .ico { width: 20px; height: 20px; }

.cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.cta-trigger { font-size: 13px; color: rgba(255,255,255,0.6); padding-left: 6px; }
.cta-trigger--ink { color: var(--gray); line-height: 1.45; padding-left: 2px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(15, 22, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { text-decoration: none; display: inline-flex; align-items: center; }
.logo__word {
  position: relative;
  display: inline-block;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
}
.logo__word--sm { font-size: 24px; }
.logo__a { position: relative; display: inline-block; }
.logo__tri {
  position: absolute;
  top: -0.46em;
  right: -0.32em;
  width: 0.42em;
  height: 0.42em;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 35%, 45% 100%);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  transition: color .15s ease;
}
.nav a:not(.btn):hover { color: var(--white); }
.nav .lang {
  font-size: 12px !important; font-weight: 800 !important; letter-spacing: .08em;
  padding: 6px 10px !important; border: 1px solid var(--line-dark); border-radius: 999px;
  color: rgba(255,255,255,0.85) !important;
}
.nav .lang:hover { border-color: var(--lime); color: var(--lime) !important; }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 11vw, 140px) clamp(64px, 9vw, 110px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(166,198,57,0.16) 0%, rgba(166,198,57,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 860px; }
.hero__title {
  font-size: clamp(34px, 5.6vw, 62px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero__sub { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,0.78); max-width: 58ch; margin-bottom: 34px; }
.hero__sub strong { color: var(--white); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 16px 18px; }
.hero__actions--center { justify-content: center; margin-top: 30px; }

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.proof-strip li { padding-right: 22px; margin-right: 22px; border-right: 1px solid var(--line-dark); }
.proof-strip li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.proof-strip strong { color: var(--white); font-weight: 800; }

/* ---------- Grids e cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--line);
}
.card h3 { font-size: 19px; margin: 14px 0 10px; }
.card p { color: var(--ink-soft); font-size: 15px; }
.card__num { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: var(--lime-dark); }

.problem .section__title { margin-bottom: 36px; }
.problem__close { margin-top: 34px; font-size: 19px; color: var(--ink-soft); }
.problem__close strong { color: var(--ink); }

/* ---------- Serviços ---------- */
.services { margin-top: 36px; }
.service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.service__head { display: flex; gap: 18px; align-items: flex-start; }
.service__icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--lime);
}
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 22px; margin-bottom: 4px; }
.service__tag { color: var(--ink-soft); font-size: 15px; }

.checklist { display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-soft); }
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--lime-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%238FAF2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.service__price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
}
.service__price strong { font-size: 20px; font-weight: 800; }
.service__price span { color: var(--gray); font-size: 14px; }

/* ---------- Portfólio ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 34px; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.chip[aria-pressed="true"] { background: var(--lime); border-color: var(--lime); color: var(--navy); }

.portfolio { gap: 28px; }
.project {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.project:hover { transform: translateY(-4px); border-color: rgba(166,198,57,0.6); }
.project.is-hidden { display: none; }

.mockup {
  position: relative;
  padding: 26px 26px 0;
  background: linear-gradient(180deg, var(--navy-3), var(--navy-2));
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
}
.mockup__desktop {
  position: absolute;
  left: 26px; right: 26px; top: 26px;
  border-radius: 10px 10px 0 0;
  background: #0B1119;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  overflow: hidden;
}
.mockup__bar { height: 18px; background: #1E2836; display: flex; align-items: center; gap: 5px; padding-left: 10px; }
.mockup__bar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.mockup__desktop img { width: 100%; height: auto; aspect-ratio: 1440 / 900; object-fit: cover; object-position: top; }
.mockup__mobile {
  position: absolute;
  right: 22px; bottom: -6px;
  width: 22%;
  border-radius: 14px;
  border: 3px solid #2A3646;
  background: #0B1119;
  box-shadow: 0 16px 34px rgba(0,0,0,0.55);
  overflow: hidden;
}
.mockup__mobile img { width: 100%; height: auto; aspect-ratio: 390 / 844; object-fit: cover; object-position: top; }

.project__body { padding: 20px 24px 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.project__meta { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 6px; }
.project h3 { font-size: 20px; color: var(--white); margin-bottom: 6px; }
.project p { font-size: 14px; color: rgba(255,255,255,0.68); max-width: 46ch; }
.project__open {
  flex: 0 0 auto;
  font-size: 13px; font-weight: 700;
  color: var(--white);
  padding: 9px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  white-space: nowrap;
  transition: all .15s ease;
}
.project:hover .project__open { background: var(--lime); border-color: var(--lime); color: var(--navy); }
.portfolio__empty { color: rgba(255,255,255,0.6); grid-column: 1 / -1; }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 36px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius-lg); padding: 28px 26px; border: 1px solid var(--line); }
.step__num {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--lime);
  font-weight: 800; margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-soft); }
.step a { color: var(--ink); font-weight: 600; text-decoration-color: var(--lime); text-underline-offset: 3px; }

/* ---------- Simulador ---------- */
.sim { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 48px; align-items: start; }
.sim__intro > p { color: var(--ink-soft); font-size: 17px; max-width: 46ch; }
.sim__intro .section__title { margin-bottom: 16px; }

.guarantee {
  margin-top: 32px;
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.guarantee__icon { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--lime-soft); color: var(--lime-dark); }
.guarantee__icon svg { width: 22px; height: 22px; }
.guarantee strong { display: block; margin-bottom: 4px; font-size: 15px; }
.guarantee p { font-size: 14px; color: var(--ink-soft); }

.sim__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 34px 32px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.sim__card-title { font-size: 24px; margin-bottom: 22px; }
.sim__group { border: 0; margin: 0 0 24px; padding: 0; min-width: 0; }
.sim__group legend { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; padding: 0; }

.options { display: grid; gap: 10px; }
.options--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.opt {
  position: relative;
  display: flex; align-items: flex-start; gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  background: var(--white);
}
.opt:hover { border-color: rgba(15,22,32,0.35); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt__box {
  flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px;
  border: 2px solid rgba(15,22,32,0.35); border-radius: 5px;
  display: grid; place-items: center;
  transition: all .15s ease;
}
.opt--radio .opt__box { border-radius: 50%; }
.opt__box::after { content: ''; width: 8px; height: 8px; border-radius: 2px; background: var(--navy); transform: scale(0); transition: transform .15s ease; }
.opt--radio .opt__box::after { border-radius: 50%; }
.opt input:checked ~ .opt__box { border-color: var(--navy); }
.opt input:checked ~ .opt__box::after { transform: scale(1); }
.opt:has(input:checked) { border-color: var(--navy); background: var(--paper-2); }
.opt input:focus-visible ~ .opt__box { outline: 3px solid var(--lime); outline-offset: 2px; }
.opt__body { flex: 1; min-width: 0; }
.opt__title { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.opt__desc { font-size: 13px; color: var(--gray); margin-top: 2px; }
.opt__price { font-size: 13px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
.tag { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; background: var(--lime); color: var(--navy); }

.stepper { display: inline-flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; margin-left: auto; align-self: center; }
.stepper button { width: 34px; height: 34px; border: 0; background: transparent; font-weight: 800; font-size: 18px; cursor: pointer; color: var(--ink); }
.stepper button:hover { background: var(--paper-2); }
.stepper output { min-width: 28px; text-align: center; font-weight: 700; font-size: 15px; }

.sim__result { border-top: 1px solid var(--line); padding-top: 22px; margin-top: 6px; }
.sim__label { font-size: 13px; color: var(--gray); font-weight: 600; }
.sim__total { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.sim__prefix { font-size: 14px; color: var(--ink-soft); }
.sim__total strong { font-size: clamp(30px, 4vw, 38px); font-weight: 900; letter-spacing: -0.02em; }
.sim__detail { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }
.sim__monthly { font-size: 14px; color: var(--ink-soft); margin-top: 6px; font-weight: 600; }
.sim__note { font-size: 12px; color: var(--gray); margin-top: 10px; }

.sim__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.sim__actions .cta-stack { flex: 1 1 280px; }
.sim__actions .cta-stack .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; margin-top: 30px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 22px; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-2);
  font-weight: 700;
  color: var(--ink);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: '–'; }
.faq__item p { padding: 0 0 20px; color: var(--ink-soft); font-size: 15px; }
.faq__item a { color: var(--ink); font-weight: 600; text-decoration-color: var(--lime); text-underline-offset: 3px; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final .section__title { margin-inline: auto; }
.cta-final .section__sub { margin-inline: auto; }

/* ---------- Footer ---------- */
.footer { background: #0A0F16; color: rgba(255,255,255,0.7); padding-block: 44px; border-top: 1px solid var(--line-dark); }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 22px; }
.footer__tagline { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 12px; color: rgba(255,255,255,0.55); }
.footer__contact { display: grid; gap: 6px; font-size: 14px; }
.footer__contact a { text-decoration: none; }
.footer__contact a:hover { color: var(--white); }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.4); width: 100%; margin-top: 8px; }

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transition: transform .15s ease;
}
.whats-float:hover { transform: scale(1.06); }
.whats-float svg { width: 30px; height: 30px; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sim { grid-template-columns: 1fr; gap: 32px; }
  .sim__card { position: static; }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--line-dark);
    padding: 12px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-size: 16px; }
  .nav__cta { margin-top: 16px; justify-content: center; }
  .nav .lang { align-self: flex-start; margin-top: 14px; border-bottom: 1px solid var(--line-dark) !important; }
}

@media (max-width: 760px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .options--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .sim__card { padding: 26px 20px; }
  .project__body { flex-direction: column; }
  .proof-strip li { padding-right: 14px; margin-right: 14px; }
  .hero__actions .btn { width: 100%; }
  .cta-stack { width: 100%; }
  .sim__actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .whats-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


/* =========================================================
   Faro — v2: camada visual em cima de styles.css
   Mockups de dispositivos, faixa de logos, mocks de Instagram /
   Google, processo ilustrado, seção "quem faz" e CTA com fundo.
   ========================================================= */

/* ---------- Dispositivos (reutilizados em várias seções) ---------- */
.device { position: relative; }
.device--desktop {
  border-radius: 12px;
  background: #0B1119;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  overflow: hidden;
}
.device__bar {
  height: 26px; display: flex; align-items: center; gap: 6px; padding: 0 12px;
  background: #1E2836; font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: .02em;
}
.device__bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.device__bar span { margin-left: 10px; padding: 2px 10px; border-radius: 6px; background: rgba(255,255,255,0.06); }
.device__screen { overflow: hidden; background: #0B1119; }
.device__screen img { width: 100%; height: auto; display: block; }
.device__screen--scroll { aspect-ratio: 16 / 10; }
.device__screen--scroll img { animation: scrollSite 16s ease-in-out infinite; }
@keyframes scrollSite {
  0%, 12% { transform: translateY(0); }
  48%, 60% { transform: translateY(calc(-100% + 100% * 900 / 2600)); }
  96%, 100% { transform: translateY(0); }
}
.device--phone {
  border-radius: 22px;
  border: 4px solid #2A3646;
  background: #0B1119;
  box-shadow: 0 24px 50px rgba(0,0,0,0.55);
  overflow: hidden;
}
.device--phone img { width: 100%; height: auto; aspect-ratio: 390 / 844; object-fit: cover; object-position: top; display: block; }

/* ---------- Ritmo vertical e larguras (v2) ---------- */
.section { padding-block: clamp(44px, 5.5vw, 72px); }
.section__title { max-width: none; margin-bottom: 14px; }
.section__sub { max-width: none; }
.problem .section__title { margin-bottom: 24px; }
.services, .steps, .filters, .faq, .stats { margin-top: 26px; }
.filters { margin-bottom: 26px; }
.footnote { margin-top: 16px; }

/* ---------- Hero v2: coluna única, título ocupando a largura ---------- */
.hero--v2 { padding-block: clamp(44px, 6vw, 72px) clamp(44px, 6vw, 64px); }
/* Título em 3 linhas fixas; a linha da pergunta (a mais longa) dita o tamanho */
.hero--v2 .hero__title { font-size: clamp(30px, 4.7vw, 66px); max-width: none; line-height: 1.04; margin-bottom: 30px; }
.hero__line { display: block; }
/* Abaixo do título: texto + CTAs à esquerda, rosto real à direita */
.hero__grid { display: block; position: relative; }
.hero__copy { max-width: none; }
.hero--v2 .hero__sub { max-width: 52ch; font-size: clamp(18px, 1.7vw, 23px); }
.hero--v2 .proof-strip { margin-top: 32px; }
/* Fundo do hero: foto cobrindo a seção inteira, com véu escuro por cima do texto */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,22,32,0.94) 0%, rgba(15,22,32,0.86) 45%, rgba(15,22,32,0.62) 100%), linear-gradient(180deg, rgba(15,22,32,0.35) 0%, rgba(15,22,32,0) 40%, rgba(15,22,32,0.9) 100%); }
.hero__content { position: relative; z-index: 1; }
.hero--v2::before { z-index: 1; } }
.toast {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--ink);
  border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  font-size: 13px; line-height: 1.3;
}
.toast--wa { left: -6%; bottom: 8%; max-width: 280px; animation: floatIn .8s ease both 1.2s; }
.toast__icon { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; }
.toast__icon svg { width: 20px; height: 20px; }
.toast__body { display: flex; flex-direction: column; }
.toast__body strong { font-size: 13px; }
.toast__body span { color: var(--ink-soft); font-size: 12px; }
.toast__time { align-self: flex-start; font-size: 11px; color: var(--gray); margin-left: 6px; }
.toast--live { top: -6px; right: 4%; gap: 8px; font-weight: 700; font-size: 12px; padding: 8px 14px; background: var(--lime); color: var(--navy); animation: floatIn .8s ease both .6s; }
.toast--live i, .badge--live i { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 0 rgba(15,22,32,.5); animation: pulse 1.8s infinite; }
@keyframes floatIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(15,22,32,.45); } 70% { box-shadow: 0 0 0 8px rgba(15,22,32,0); } 100% { box-shadow: 0 0 0 0 rgba(15,22,32,0); } }

/* ---------- Clientes (logos) ---------- */
.logos-section { padding-block: clamp(40px, 5vw, 64px); }
.logos__list { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.logos__item {
  display: inline-flex; align-items: center; gap: 12px;
  height: 72px; padding: 0 26px; border-radius: 14px;
  background: var(--navy); border: 1px solid var(--line-dark);
}
.logos__item img { height: 38px; width: auto; }
.logos__item span { font-weight: 700; font-size: 15px; color: rgba(255,255,255,0.9); }
.logos__item--light { background: var(--white); border-color: var(--line); }
.logos__item--light img { height: 44px; }

/* ---------- Problema v2 ---------- */
.problem__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
.problem__visual { position: relative; min-height: 600px; }
.pains { display: grid; gap: 14px; margin-top: 10px; }
.pain { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.pain h3 { font-size: 17px; margin: 8px 0 6px; }
.pain p { font-size: 14px; color: var(--ink-soft); }
.problem--v2 .problem__close { margin-top: 24px; }

/* Celular com perfil de Instagram (mock fiel ao app) */
.phone {
  position: absolute; left: 0; top: 0; width: 62%;
  background: #fff; border-radius: 30px; border: 6px solid #1B1F24;
  box-shadow: 0 30px 70px rgba(15,22,32,0.35); overflow: hidden;
  font-family: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: #111;
}
.phone__status { display: flex; justify-content: space-between; padding: 8px 16px 2px; font-size: 11px; font-weight: 600; }
.phone__signal { letter-spacing: -1px; font-size: 9px; }
.ig { padding: 4px 12px 12px; font-size: 11px; }
.ig__top { display: flex; align-items: center; gap: 6px; padding: 4px 0 10px; font-size: 13px; }
.ig__top strong { flex: 1; font-weight: 700; }
.ig__lock { font-size: 10px; }
.ig__more { font-weight: 700; }
.ig__head { display: flex; align-items: center; gap: 14px; }
.ig__avatar { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%; padding: 2px; background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.ig__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #fff; }
.ig__stats { flex: 1; display: flex; justify-content: space-around; text-align: center; }
.ig__stats b { display: block; font-size: 14px; font-weight: 700; }
.ig__stats small { font-size: 10px; color: #444; }
.ig__bio { display: flex; flex-direction: column; gap: 1px; margin-top: 10px; line-height: 1.35; }
.ig__bio strong { font-weight: 700; }
.ig__cat { color: #737373; }
.ig__bio a { color: #00376b; font-weight: 600; text-decoration: none; }
.ig__btns { display: flex; gap: 5px; margin-top: 10px; }
.ig__btns b { flex: 1; text-align: center; padding: 6px 0; border-radius: 7px; background: #efefef; font-size: 11px; font-weight: 600; }
.ig__btns .is-follow { background: #0095f6; color: #fff; }
.ig__btns .ig__btn-icon { flex: 0 0 30px; }
.ig__hl { display: flex; gap: 12px; margin-top: 12px; }
.ig__hl div { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ig__hl i { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid #dbdbdb; background: radial-gradient(circle at 40% 35%, #e9e6e0, #cfcbc3); }
.ig__hl small { font-size: 9px; }
.ig__tabs { display: flex; margin: 12px -12px 0; border-top: 1px solid #efefef; }
.ig__tabs span { flex: 1; text-align: center; padding: 8px 0; font-size: 13px; color: #8e8e8e; }
.ig__tabs .is-on { color: #111; border-bottom: 1.5px solid #111; }
.ig__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 2px -12px -12px; }
.ig__grid img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

.dm {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: 999px; padding: 8px 16px 8px 8px;
  box-shadow: 0 14px 34px rgba(15,22,32,0.18); font-size: 13px; font-weight: 600;
  animation: floatIn .7s ease both;
}
.dm__avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #c7cbd1, #8c93a0); }
.dm--1 { left: 58%; top: 10%; animation-delay: .2s; }
.dm--2 { left: 64%; top: 28%; animation-delay: .5s; }
.dm--3 { left: 54%; top: 46%; animation-delay: .8s; }

.gmock {
  position: absolute; right: 0; bottom: 0; width: 58%;
  background: var(--white); border-radius: 18px; padding: 14px;
  border: 1px solid var(--line); box-shadow: var(--shadow); font-size: 12px;
}
.gmock__search { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; margin-bottom: 10px; }
.gmock__search svg { width: 14px; height: 14px; }
.gmock__row { display: flex; justify-content: space-between; align-items: center; padding: 9px 4px; border-top: 1px solid var(--line); }
.gmock__row b { font-size: 13px; }
.gmock__row span { color: var(--gray); font-size: 11px; }
.gmock__row--you { color: #B42318; }
.gmock__row--you b { color: #B42318; text-decoration: line-through; text-decoration-color: rgba(180,35,24,.5); }
.gmock__row--you span { color: #B42318; font-weight: 700; }

/* ---------- Serviços v2 ---------- */
.service--visual { padding-top: 0; overflow: hidden; }
.service__media {
  position: relative; margin: 0 -32px 24px; height: 230px;
  background: linear-gradient(180deg, var(--navy-3), var(--navy)); overflow: hidden;
}
.service__media .device--desktop { position: absolute; left: 28px; right: 26%; top: 28px; }
.service__media .device--phone { position: absolute; right: 26px; bottom: -30px; width: 26%; }
.device--sm .device__bar { height: 20px; }
.device--phone-sm { border-width: 3px; border-radius: 16px; }
.service__media--map { background: linear-gradient(180deg, #E8EEE3, #DCE4D3); }
.gbp {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(320px, 86%); background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 44px rgba(15,22,32,0.22); font-size: 12px;
}
.gbp__map {
  height: 78px; position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(255,255,255,.55) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, #DCEBD0, #C9DDC0);
}
.gbp__pin { position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; border-radius: 50% 50% 50% 0; background: #EA4335; transform: translate(-50%, -80%) rotate(-45deg); box-shadow: 0 6px 12px rgba(0,0,0,.25); }
.gbp__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 3px; }
.gbp__body strong { font-size: 15px; }
.gbp__rating { color: var(--ink-soft); }
.gbp__rating i { color: #FBBC04; font-style: normal; letter-spacing: -1px; }
.gbp__open { color: #188038; font-weight: 600; }
.gbp__actions { display: flex; gap: 6px; margin-top: 8px; }
.gbp__actions b { flex: 1; text-align: center; padding: 6px 0; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; color: #1a73e8; font-weight: 600; }
.gbp__actions b.is-site { background: var(--lime); border-color: var(--lime); color: var(--navy); }

/* ---------- Simulador compacto (cabe em ~1 tela) ---------- */
.sim__card { padding: 24px 24px 22px; }
.sim__card-title { font-size: 20px; margin-bottom: 14px; }
.sim__group { margin-bottom: 14px; }
.sim__group legend { margin-bottom: 8px; font-size: 11px; }
.options { gap: 8px; }
.opt { padding: 10px 12px; gap: 10px; border-radius: 10px; }
/* opcionais: uma linha por item, descrição ao lado do título */
#extrasOptions .opt { align-items: center; padding: 8px 12px; }
#extrasOptions .opt__box { margin-top: 0; }
#extrasOptions .opt__body { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; }
#extrasOptions .opt__desc { margin-top: 0; }
#extrasOptions .stepper { margin-left: 8px; }
.opt__box { margin-top: 2px; width: 16px; height: 16px; flex-basis: 16px; }
.opt__box::after { width: 7px; height: 7px; }
.opt__title { font-size: 14px; gap: 6px; }
.opt__desc { font-size: 12px; line-height: 1.35; }
.opt__price { font-size: 12px; }
.tag { font-size: 9px; padding: 2px 7px; }
.stepper button { width: 28px; height: 28px; font-size: 16px; }
.stepper output { min-width: 22px; font-size: 14px; }
.sim__result { padding-top: 14px; margin-top: 0; }
.sim__total strong { font-size: 30px; }
.sim__detail, .sim__monthly { font-size: 13px; }
.sim__note { margin-top: 6px; }
.sim__actions { margin-top: 14px; gap: 10px; }
.sim__actions .btn--lg { padding: 14px 24px; font-size: 15px; }
.sim__actions .btn--ghost { padding: 12px 20px; }
@media (max-width: 760px) {
  .sim__card { padding: 20px 16px; }
  #extrasOptions .opt__body { display: block; }
}

/* ---------- Portfólio v2: rola no hover ---------- */
.portfolio--v2 .mockup__desktop img { transition: object-position 7s ease-in-out; }
.portfolio--v2 .project:hover .mockup__desktop img { object-position: bottom; }
.portfolio--v2 .mockup { aspect-ratio: 16 / 11; }

/* ---------- Como funciona v2 ---------- */
.steps--v2 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step--visual { padding-top: 0; overflow: hidden; }
.step__media {
  position: relative; margin: 0 -26px 20px; height: 200px;
  background: linear-gradient(180deg, var(--paper-2), #E3E0D9); overflow: hidden;
}
.device--phone-step { position: absolute; left: 50%; top: 22px; width: 52%; transform: translateX(-50%); border-width: 3px; border-radius: 18px; }
.device--xs { position: absolute; left: 18px; right: 18px; top: 26px; }
.device--xs .device__bar { height: 16px; }
.badge {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800;
  background: var(--white); color: var(--ink); box-shadow: 0 10px 24px rgba(15,22,32,.18);
}
.badge--review { left: 50%; bottom: 16px; transform: translateX(-50%); white-space: nowrap; }
.badge--live { right: 14px; bottom: 16px; background: var(--lime); color: var(--navy); }

.chat { position: absolute; inset: 14px 14px; display: flex; flex-direction: column; gap: 5px; font-size: 11px; }
.chat__msg { max-width: 88%; padding: 6px 10px; border-radius: 12px; line-height: 1.3; }
.chat__msg--in { background: var(--white); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat__msg--out { background: #D9FDD3; align-self: flex-end; border-bottom-right-radius: 3px; }
.chat__card { background: var(--navy); color: var(--white); border-radius: 12px; padding: 8px 12px; display: flex; flex-direction: column; gap: 2px; align-self: flex-start; max-width: 92%; }
.chat__card strong { font-size: 12px; color: var(--lime); }
.chat__card span { opacity: .8; }
.chat__card b { font-size: 15px; margin-top: 4px; }
.chat__card small { font-size: 10px; font-weight: 500; opacity: .7; }

/* ---------- Quem faz ---------- */
.about__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 56px; align-items: center; }
.about__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; background: var(--navy); box-shadow: var(--shadow); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__placeholder { display: none; position: absolute; inset: 0; place-items: center; align-content: center; text-align: center; color: var(--white); background: radial-gradient(60% 60% at 50% 40%, rgba(166,198,57,.18), transparent 70%), var(--navy); }
.about__photo.is-placeholder .about__placeholder { display: grid; }
.about__placeholder small { display: block; margin-top: 14px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.logo__word--big { font-size: 64px; }
.about__badge { left: 18px; right: auto; bottom: 18px; }
.about__copy > p { color: var(--ink-soft); font-size: 17px; max-width: 54ch; }
.about__copy .btn { margin-top: 26px; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.stats li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 14px; display: flex; flex-direction: column; }
.stats strong { font-size: 28px; font-weight: 900; letter-spacing: -.02em; }
.stats span { font-size: 12px; color: var(--gray); font-weight: 600; }

/* ---------- CTA final com fundo de sites ---------- */
.cta-final--v2 { position: relative; overflow: hidden; }
.cta-final__bg { position: absolute; inset: 0; display: flex; justify-content: center; gap: 28px; opacity: .18; transform: rotate(-8deg) scale(1.15); pointer-events: none; }
.cta-final__bg img { width: 220px; height: auto; align-self: flex-start; border-radius: 22px; margin-top: -40px; }
.cta-final__bg img:nth-child(2n) { margin-top: 80px; }
.cta-final--v2::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 70% at 50% 50%, rgba(15,22,32,.92), rgba(15,22,32,.55)); pointer-events: none; }
.cta-final__content { position: relative; z-index: 1; }

/* ---------- Formulário de contato (versão EN) ---------- */
.contact-form { margin-top: 30px; text-align: left; display: grid; gap: 14px; }
.contact-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); }
.contact-form input, .contact-form textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--white);
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); border-radius: 12px;
  padding: 13px 14px; transition: border-color .15s ease, background .15s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--lime); background: rgba(255,255,255,0.09); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 6px; }
.contact-form__actions .btn { border: 0; }
.contact-form__alt { font-size: 14px; color: rgba(255,255,255,0.6); }
.contact-form__alt a { color: var(--white); text-decoration-color: var(--lime); text-underline-offset: 3px; }
.contact-form__status { min-height: 1.4em; font-size: 14px; color: var(--lime); font-weight: 600; }
.contact-form__status a { color: var(--white); }
.cta-final .section__sub a { color: var(--white); font-weight: 600; text-decoration-color: var(--lime); text-underline-offset: 3px; }
.whats-float--mail { background: var(--lime); color: var(--navy); }
.whats-float--mail svg { width: 26px; height: 26px; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .hero__line { display: inline; }
  .hero__line + .hero__line::before { content: " "; }
  .problem__grid { grid-template-columns: 1fr; gap: 36px; }
  .problem__visual { min-height: 460px; }
  .steps--v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { max-width: 420px; }
}

@media (max-width: 760px) {
  .logos__list { gap: 10px; }
  .logos__item { height: 60px; padding: 0 18px; }
  .logos__item img { height: 30px; }
  .logos__item--light img { height: 34px; }
  .problem__visual { min-height: 0; }
  .phone { position: relative; width: 74%; }
  .dm { font-size: 12px; padding: 6px 12px 6px 6px; max-width: 58%; }
  .dm--1 { left: auto; right: 0; top: 4%; }
  .dm--2 { left: auto; right: 0; top: 24%; }
  .dm--3 { left: auto; right: 0; top: 40%; }
  .gmock { position: relative; width: 84%; margin: -36px 0 0 auto; }
  .service__media { height: 200px; }
  .steps--v2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__actions .btn { width: 100%; }
  .toast--wa { max-width: 240px; }
  .cta-final__bg img { width: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  .device__screen--scroll img, .toast, .dm, .badge--live i, .toast--live i { animation: none !important; }
}
