/* ============================================================
   VICOLIZ — estilos
   ============================================================ */
:root {
  --cyan: #3fe4e8;          /* acento brilhante (fundo escuro) */
  --cyan-soft: rgba(63, 228, 232, 0.16);
  --teal: #15a3a3;          /* acento (fundo claro) */
  --teal-deep: #0c7e80;

  --bg-dark: #061518;       /* fundo escuro base */
  --bg-light: #f6f5f0;      /* fundo claro base */

  --ink: #0d1d21;           /* texto escuro sobre claro */
  --ink-soft: #54666c;      /* texto secundário claro */
  --on-dark: #eaf6f7;       /* texto sobre escuro */
  --on-dark-soft: rgba(234, 246, 247, 0.66);

  --line-dark: rgba(255, 255, 255, 0.09);
  --line-light: rgba(13, 29, 33, 0.10);

  --card-dark: rgba(255, 255, 255, 0.035);
  --card-light: #ffffff;

  --radius: 16px;
  --radius-lg: 22px;
  --shadow-light: 0 26px 60px rgba(13, 29, 33, 0.08);
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-light);
  font-family: Inter, system-ui, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- Section themes ---------- */
.section-dark {
  position: relative;
  color: var(--on-dark);
  background:
    radial-gradient(circle at 82% 8%, rgba(63, 228, 232, 0.12), transparent 42%),
    radial-gradient(circle at 4% 92%, rgba(63, 228, 232, 0.07), transparent 40%),
    var(--bg-dark);
}

.section-light {
  position: relative;
  background:
    radial-gradient(circle at 16% 6%, rgba(21, 163, 163, 0.05), transparent 34%),
    var(--bg-light);
}

.section-light::before,
.section-light::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(rgba(13, 29, 33, 0.12) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}
.section-light::before { top: 120px; right: 22px; }
.section-light::after { bottom: 120px; left: 22px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, 1320px);
  margin: 18px auto 0;
  padding: 9px 12px 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(6, 21, 24, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo {
  width: 218px; height: 36px;
  object-fit: contain; object-position: left center;
}

.site-header nav {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  font-size: 0.86rem;
  font-weight: 600;
}
.site-header nav a { color: rgba(255, 255, 255, 0.78); transition: color 0.2s ease; }
.site-header nav a:hover { color: var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--cyan);
  border-radius: 10px;
  color: #04181a;
  background: var(--cyan);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 30px rgba(63, 228, 232, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  will-change: transform;
}
.btn:hover { box-shadow: 0 16px 44px rgba(63, 228, 232, 0.32); filter: brightness(1.04); }
.btn-small { min-height: 40px; padding: 0 18px; font-size: 0.84rem; border-radius: 9px; }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-arrow { transition: transform 0.22s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.section-light .btn { color: #ffffff; background: var(--teal-deep); border-color: var(--teal-deep); box-shadow: 0 16px 34px rgba(12, 126, 128, 0.24); }
.section-light .btn:hover { box-shadow: 0 18px 40px rgba(12, 126, 128, 0.32); }

.link-wa {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan); font-weight: 600; font-size: 0.92rem;
}
.link-wa svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.link-wa.light { color: var(--teal-deep); }

/* ---------- Eyebrow / rules / headings ---------- */
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: var(--cyan); }
.eyebrow.center { text-align: center; }

.rule {
  display: block;
  width: 64px; height: 3px;
  margin: 22px 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), rgba(21, 163, 163, 0.2));
}
.section-dark .rule { background: linear-gradient(90deg, var(--cyan), rgba(63, 228, 232, 0.18)); }
.rule.center, .center-copy .rule { margin-left: auto; margin-right: auto; }

.accent { color: var(--teal); }
.section-dark .accent { color: var(--cyan); }

.center-copy {
  width: min(100%, 760px);
  margin: 0 auto 56px;
  text-align: center;
}
.center-copy h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.center-copy .sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.section-dark .center-copy .sub { color: var(--on-dark-soft); }

/* ============================================================
   1 · HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 132px 24px 80px;
}
#particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.85;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0; height: 40%;
  background:
    linear-gradient(rgba(63, 228, 232, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 228, 232, 0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(520px) rotateX(64deg);
  transform-origin: bottom;
  opacity: 0.4;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1.05fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  width: min(100%, var(--maxw));
}
.hero-copy { max-width: 600px; }

/* Headline rotativa (menor) */
.rotator {
  position: relative;
  min-height: 2.2em;
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
}
.rotator-line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.rotator-line.is-active { opacity: 1; transform: translateY(0); }
.rotator-line.is-leaving { opacity: 0; transform: translateY(-14px); }
.rotator em { color: var(--cyan); font-style: normal; }

.lead {
  max-width: 500px;
  margin-top: 22px;
  color: var(--on-dark-soft);
  font-size: 1.05rem;
}

.value-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.value-list li { display: flex; gap: 13px; align-items: flex-start; }
.vl-icon {
  flex: none;
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border: 1px solid rgba(63, 228, 232, 0.4);
  border-radius: 50%;
  margin-top: 2px;
}
.vl-icon svg { width: 14px; height: 14px; fill: none; stroke: var(--cyan); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.value-list strong { display: block; color: var(--on-dark); font-family: Sora, sans-serif; font-size: 1rem; }
.value-list p { margin-top: 2px; color: var(--on-dark-soft); font-size: 0.92rem; line-height: 1.5; }

.actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

/* --- Hero stage / ecossistema --- */
.hero-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 30px 24px;
}
.orbit-glow {
  position: absolute;
  width: 96%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 228, 232, 0.12), transparent 58%);
  pointer-events: none;
}

/* Laptop */
.laptop { position: relative; width: min(80%, 410px); margin: 0; align-self: start; margin-top: 54px; z-index: 2; }
.laptop-screen {
  border: 9px solid #11272b;
  border-radius: 14px 14px 4px 4px;
  background: #0a1d21;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 50px rgba(63, 228, 232, 0.12);
}
.laptop-base {
  height: 14px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(#243a3e, #11272b);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.5);
}
.laptop-base::after {
  content: ""; display: block; width: 22%; height: 4px; margin: 0 auto;
  border-radius: 0 0 6px 6px; background: rgba(0, 0, 0, 0.35);
}
.ls-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 30px; padding: 0 12px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ls-dots { display: flex; gap: 5px; }
.ls-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); }
.ls-logo { display: flex; align-items: center; gap: 6px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.7); }
.ls-logo img { width: 16px; height: 12px; object-fit: contain; }
.ls-nav { display: flex; gap: 7px; }
.ls-nav i { width: 16px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.18); }
.ls-hero {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 200px;
  background:
    linear-gradient(120deg, rgba(10, 29, 33, 0.92) 38%, rgba(10, 29, 33, 0.2)),
    linear-gradient(135deg, #14333a, #4d6168);
}
.ls-hero-text { padding: 26px 20px; align-self: center; }
.ls-hero-text p { font-family: Sora, sans-serif; font-weight: 700; font-size: 1.15rem; line-height: 1.12; color: #fff; }
.ls-cta {
  display: inline-block; margin-top: 14px;
  padding: 7px 16px; border-radius: 8px;
  background: var(--cyan); color: #04181a;
  font-size: 0.66rem; font-weight: 800;
}
.ls-hero-photo { background: linear-gradient(160deg, #5a6f76, #1b2f34); }

/* Float cards */
.float-card {
  position: absolute;
  width: 188px;
  padding: 14px 15px;
  border: 1px solid rgba(63, 228, 232, 0.2);
  border-radius: 14px;
  background: rgba(8, 26, 30, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
  z-index: 3;
}
.float-card h4 { font-size: 0.92rem; color: #fff; margin-bottom: 4px; }
.float-card > p { font-size: 0.74rem; line-height: 1.42; color: var(--on-dark-soft); }
.fc-icon {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; margin-bottom: 9px;
  border-radius: 9px;
  background: var(--cyan-soft);
}
.fc-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--cyan); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fc-icon.ic-wa svg { stroke: #25d366; }

.fc-identity { top: -2%; right: 0; animation: floaty 7s ease-in-out infinite; }
.fc-website  { top: 26%; left: -6%; animation: floaty 8s ease-in-out infinite 0.6s; }
.fc-google   { top: 40%; right: -8%; animation: floaty 7.6s ease-in-out infinite 0.3s; }
.fc-growth   { bottom: -1%; left: 0; animation: floaty 8.4s ease-in-out infinite 0.9s; }
.fc-contact  { bottom: 8%; right: -4%; animation: floaty 7.2s ease-in-out infinite 1.2s; }

.fc-pill {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 11px; padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; color: #fff;
}
.fc-pill img { width: 18px; height: 13px; object-fit: contain; }

.fc-google-g {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; margin-bottom: 9px;
  border-radius: 50%; background: #fff;
  font-family: Sora, sans-serif; font-weight: 800; font-size: 1rem;
  color: #4285f4;
}
.fc-rating { display: flex; align-items: center; gap: 6px; margin-top: 10px; }
.fc-rating strong { font-size: 1.1rem; color: #fff; }
.fc-rating .stars { color: #f7c948; font-size: 0.8rem; letter-spacing: 1px; }
.fc-rating small { color: var(--on-dark-soft); font-size: 0.68rem; }

.fc-chart { width: 100%; height: 38px; margin-top: 10px; }
.fc-chart polyline { fill: none; stroke: var(--cyan); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.fc-metric { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.fc-metric strong { font-size: 1.2rem; color: var(--cyan); }
.fc-metric small { font-size: 0.66rem; color: var(--on-dark-soft); }

.fc-contact-icons { display: flex; gap: 8px; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   2 · REALIDADE (claro)
   ============================================================ */
.reality, .solutions, .projects, .process, .testimonials { padding: clamp(80px, 9vw, 132px) 24px; }
.reality, .solutions, .projects, .process, .testimonials {
  margin: 0 auto;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(100%, var(--maxw));
  margin: 0 auto;
}
.problem-card {
  padding: 32px 30px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: var(--card-light);
  box-shadow: var(--shadow-light);
}
.pc-icon {
  display: grid; place-items: center;
  width: 64px; height: 64px; margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(21, 163, 163, 0.1);
}
.pc-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--teal); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h3 { font-size: 1.28rem; line-height: 1.22; color: var(--ink); }
.problem-card > p { margin-top: 16px; color: var(--ink-soft); font-size: 0.97rem; }
.x-list { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-light); display: grid; gap: 12px; }
.x-list li {
  position: relative; padding-left: 26px;
  color: var(--ink-soft); font-size: 0.92rem;
}
.x-list li::before {
  content: "✕"; position: absolute; left: 0; top: -1px;
  color: var(--teal); font-weight: 700; font-size: 0.85rem;
}

.solution-intro { text-align: center; margin: 84px auto 44px; }
.solution-intro h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(100%, var(--maxw));
  margin: 0 auto;
}
.benefit { display: flex; gap: 14px; align-items: flex-start; padding: 4px 18px; border-left: 1px solid var(--line-light); }
.benefit:first-child { border-left: none; }
.bf-icon {
  flex: none;
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(21, 163, 163, 0.1);
}
.bf-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--teal); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit strong { display: block; font-family: Sora, sans-serif; font-size: 1.04rem; color: var(--ink); }
.benefit p { margin-top: 6px; color: var(--ink-soft); font-size: 0.88rem; line-height: 1.5; }

/* ============================================================
   3 · SOLUÇÕES (escuro)
   ============================================================ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(100%, var(--maxw));
  margin: 0 auto;
}
.solution-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 24px 24px 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: #020d15;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.solution-card:hover { transform: translateY(-6px); border-color: rgba(63, 228, 232, 0.4); }
.sc-art {
  aspect-ratio: 1 / 1; margin: 0 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(63, 228, 232, 0.12);
  background: #020d15;
  position: relative;
  overflow: hidden;
}
.sc-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.solution-card h3 { font-size: 1.3rem; color: #fff; }
.solution-card > p { margin-top: 12px; color: var(--on-dark-soft); font-size: 0.93rem; }
.check-list { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-dark); display: grid; gap: 11px; }
.check-list li {
  position: relative; padding-left: 24px;
  color: var(--on-dark-soft); font-size: 0.9rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 13px; height: 8px;
  border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

/* CTA bar (compartilhada) */
.cta-bar {
  display: grid;
  grid-template-columns: auto 1.3fr 1.3fr auto;
  align-items: center;
  gap: 26px;
  width: min(100%, var(--maxw));
  margin: 56px auto 0;
  padding: 30px 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}
.cta-bar.light { border-color: var(--line-light); background: #fff; box-shadow: var(--shadow-light); }
.cb-icon {
  flex: none;
  display: grid; place-items: center;
  width: 66px; height: 66px;
  border: 1px solid rgba(63, 228, 232, 0.4); border-radius: 50%;
}
.cb-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--cyan); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cta-bar.light .cb-icon { border-color: rgba(21, 163, 163, 0.35); background: rgba(21,163,163,0.08); }
.cta-bar.light .cb-icon svg { stroke: var(--teal); }
.cb-headline h3 { font-size: 1.36rem; line-height: 1.22; color: #fff; }
.cta-bar.light .cb-headline h3 { color: var(--ink); }
.cb-text { color: var(--on-dark-soft); font-size: 0.92rem; padding-left: 26px; border-left: 1px solid var(--line-dark); }
.cta-bar.light .cb-text { color: var(--ink-soft); border-color: var(--line-light); }
.cb-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.btn-lead { margin-right: 2px; }

/* ============================================================
   4 · PROJETOS (escuro)
   ============================================================ */
.filter-tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin: 0 auto 40px; width: min(100%, var(--maxw));
}
.tab {
  padding: 9px 20px; border-radius: 10px;
  border: 1px solid transparent; background: none;
  color: var(--on-dark-soft); font: inherit; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease;
}
.tab:hover { color: var(--on-dark); }
.tab.is-active { color: var(--cyan); border-color: rgba(63, 228, 232, 0.5); background: var(--cyan-soft); }

.project-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  width: min(100%, var(--maxw)); margin: 0 auto;
}
.project-card {
  padding: 22px;
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  background: var(--card-dark);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.project-card:hover { transform: translateY(-6px); border-color: rgba(63, 228, 232, 0.35); }
.project-meta { padding: 22px 6px 6px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--cyan); font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.tag svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.project-card h3 { margin-top: 12px; font-size: 1.45rem; color: #fff; }
.project-card .project-meta p { margin-top: 10px; color: var(--on-dark-soft); font-size: 0.95rem; }

/* Browser mockups */
.browser {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.bw-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #0c1f23; }
.bw-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); }
.bw-bar em {
  margin-left: 12px; padding: 3px 12px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.5);
  font-style: normal; font-size: 0.66rem; letter-spacing: 0.01em;
}
.bw-shot {
  width: 100%; aspect-ratio: 2 / 1;
  object-fit: cover; object-position: top center; display: block;
}
.browser.small .bw-shot { aspect-ratio: 1.74 / 1; }

/* ============================================================
   5 · PROCESSO (claro)
   ============================================================ */
.steps {
  position: relative;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: min(100%, var(--maxw)); margin: 0 auto;
  text-align: center;
}
.steps::before {
  content: ""; position: absolute; top: 44px; left: 8%; right: 8%; height: 1px;
  background: repeating-linear-gradient(90deg, rgba(21,163,163,0.4) 0 6px, transparent 6px 12px);
}
.step { position: relative; }
.step-circle {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 88px; height: 88px; margin: 0 auto 18px;
  border: 1px solid rgba(21, 163, 163, 0.4); border-radius: 50%;
  background: var(--bg-light);
}
.step-circle svg { width: 34px; height: 34px; fill: none; stroke: var(--teal); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.step-num { display: block; font-family: Sora, sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--teal); }
.step h3 { margin: 4px 0 12px; font-size: 1.1rem; color: var(--ink); }
.step p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.5; }

.promise-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  width: min(100%, var(--maxw)); margin: 64px auto 0;
  padding: 34px 36px;
  border-radius: var(--radius-lg);
  background: rgba(21, 163, 163, 0.05);
}
.promise { display: flex; gap: 13px; align-items: flex-start; }
.pr-check {
  flex: none; display: grid; place-items: center;
  width: 26px; height: 26px; margin-top: 2px;
  border: 1px solid rgba(21, 163, 163, 0.5); border-radius: 50%;
}
.pr-check svg { width: 14px; height: 14px; fill: none; stroke: var(--teal); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.promise strong { display: block; font-family: Sora, sans-serif; font-size: 1rem; color: var(--ink); }
.promise p { margin-top: 4px; color: var(--ink-soft); font-size: 0.86rem; line-height: 1.45; }

/* ============================================================
   6 · DEPOIMENTOS (claro)
   ============================================================ */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  width: min(100%, var(--maxw)); margin: 0 auto;
}
.testimonial {
  display: grid; grid-template-columns: 1fr 0.95fr; gap: 26px; align-items: center;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--card-light);
  box-shadow: var(--shadow-light);
}
.quote { position: relative; }
.quote-mark { font-family: Georgia, serif; font-size: 3.4rem; line-height: 0.4; color: var(--teal); }
.quote > p { margin-top: 10px; color: var(--ink); font-size: 0.98rem; line-height: 1.55; }
.quote .stars { margin-top: 18px; color: var(--teal); letter-spacing: 2px; font-size: 1rem; }
.quote-person { display: flex; align-items: center; gap: 13px; margin-top: 16px; }
.quote-avatar {
  flex: none;
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 2px solid rgba(21, 163, 163, 0.4);
}
.quote-name { display: block; font-family: Sora, sans-serif; font-size: 1.05rem; color: var(--ink); }
.quote small { color: var(--ink-soft); font-size: 0.86rem; }

.closing-row {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 26px; align-items: stretch;
  width: min(100%, var(--maxw)); margin: 56px auto 0;
}
.closing-left, .closing-right {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 32px 34px;
  border-radius: var(--radius-lg);
  background: var(--card-light);
  box-shadow: var(--shadow-light);
}
.closing-right { background: rgba(21, 163, 163, 0.06); box-shadow: none; }
.closing-left .cb-icon, .closing-right .cb-icon { border-color: rgba(21, 163, 163, 0.4); background: rgba(21,163,163,0.08); }
.closing-left .cb-icon svg, .closing-right .cb-icon svg { stroke: var(--teal); }
.closing-right .cb-icon.wa svg { stroke: #1f9d55; }
.closing-left h3 { font-size: 1.32rem; line-height: 1.22; color: var(--ink); }
.closing-left p { margin-top: 10px; color: var(--ink-soft); font-size: 0.94rem; }
.closing-cta { flex: 1 1 160px; }
.closing-cta h4 { font-size: 1.1rem; color: var(--ink); }
.closing-cta p { margin-top: 6px; color: var(--ink-soft); font-size: 0.9rem; }
.closing-right .cb-actions { width: 100%; flex-direction: column; align-items: flex-start; gap: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 72px max(24px, calc((100vw - var(--maxw)) / 2)) 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1.2fr 1.25fr;
  gap: 40px;
}
.footer-about .brand-logo { width: 218px; height: 36px; margin-bottom: 20px; }
.footer-about > p { color: var(--on-dark-soft); font-size: 0.92rem; max-width: 320px; }
.footer-contact { margin-top: 24px; display: grid; gap: 14px; }
.footer-contact li {
  display: flex; align-items: center; gap: 11px;
  color: var(--on-dark-soft); font-size: 0.9rem;
}
.footer-contact svg {
  flex: none; width: 18px; height: 18px;
  fill: none; stroke: var(--cyan); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.footer-contact a:hover { color: var(--cyan); }

.footer-col h5, .footer-social h5 {
  margin: 0 0 20px; padding-bottom: 10px;
  font-family: Sora, sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan);
  border-bottom: 2px solid rgba(63, 228, 232, 0.3);
  display: inline-block;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col a {
  margin-bottom: 13px; color: var(--on-dark-soft);
  font-size: 0.9rem; transition: color 0.2s ease;
  width: fit-content;
}
.footer-col a:hover { color: var(--cyan); }

.social-row { display: flex; gap: 11px; }
.social-row a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; border-radius: 99px;
  border: 1px solid var(--line-dark);
  color: var(--on-dark-soft);
  font-size: 0.88rem; font-weight: 600;
  transition: all 0.2s ease;
}
.social-row a:hover { color: var(--cyan); border-color: rgba(63, 228, 232, 0.5); background: var(--cyan-soft); }
.social-row svg { flex: none; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.trust-box {
  display: flex; gap: 13px; align-items: flex-start;
  margin-top: 26px; padding: 18px;
  border: 1px solid var(--line-dark); border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}
.trust-box svg { flex: none; width: 28px; height: 28px; fill: none; stroke: var(--cyan); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-box strong { display: block; font-family: Sora, sans-serif; font-size: 0.92rem; color: #fff; }
.trust-box p { margin-top: 5px; color: var(--on-dark-soft); font-size: 0.8rem; line-height: 1.45; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  margin-top: 48px; padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  color: var(--on-dark-soft); font-size: 0.85rem;
}
.footer-bottom .heart { color: var(--cyan); }

/* ============================================================
   Reveal + cursor
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.cursor-dot {
  position: fixed; z-index: 90; top: 0; left: 0;
  width: 13px; height: 13px; pointer-events: none;
  border: 1px solid var(--cyan); border-radius: 50%;
  opacity: 0; transform: translate(-50%, -50%);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .site-header nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-stage { min-height: 480px; order: 2; }
  .reality-grid, .solution-grid, .benefit-row { grid-template-columns: repeat(2, 1fr); }
  .project-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .promise-row { grid-template-columns: repeat(2, 1fr); }
  .cta-bar { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .cb-text { padding-left: 0; border-left: none; }
  .closing-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .site-header { width: min(100% - 24px, 600px); margin-top: 12px; }
  .brand-logo { width: 179px; height: 31px; }
  .btn-small { display: none; }
  .hero { padding-top: 112px; }
  .lead { font-size: 1rem; }

  .float-card { width: 150px; padding: 11px 12px; }
  .fc-website { left: -4%; }
  .fc-identity { right: -2%; }
  .fc-google { right: -4%; }
  .fc-contact { right: -2%; }

  .reality-grid, .solution-grid, .benefit-row, .promise-row, .steps { grid-template-columns: 1fr; }
  .benefit { border-left: none; padding: 0; }
  .filter-tabs { gap: 6px; }
  .tab { padding: 8px 14px; font-size: 0.84rem; }
  .testimonial { grid-template-columns: 1fr; }
  .browser { max-width: 360px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .rotator-line { opacity: 1; transform: none; }
}
