/* ============================================================
   Sara Souza | Consultoria de SEO Local
   Paleta: #3eacef · #1b94f6 · #64cef9 · #317aa7 · branco · cinza claro
   Tipografia: Poppins
   ============================================================ */

:root {
  --azul: #3eacef;
  --azul-intenso: #1b94f6;
  --azul-claro: #64cef9;
  --azul-escuro: #317aa7;
  --azul-profundo: #16344d;
  --azul-profundo-2: #1f4b70;

  --fundo: #ffffff;
  --fundo-suave: #f5f9fc;
  --fundo-suave-2: #eef6fc;

  --texto: #1d2b38;
  --texto-suave: #55677a;
  --texto-fraco: #8295a8;

  --borda: #e3edf5;
  --branco: #ffffff;

  --grad: linear-gradient(135deg, #64cef9 0%, #1b94f6 55%, #3eacef 100%);
  --grad-suave: linear-gradient(135deg, #eaf6fe 0%, #f7fbfe 100%);

  --sombra: 0 18px 45px -18px rgba(27, 148, 246, 0.22);
  --sombra-suave: 0 8px 30px -12px rgba(27, 148, 246, 0.16);

  --radius: 18px;
  --radius-lg: 26px;

  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--fundo);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--texto);
}

:focus-visible {
  outline: 2px solid var(--azul-intenso);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: var(--azul-intenso);
  color: #fff;
}

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

section[id],
div[id] {
  scroll-margin-top: calc(var(--header-h) + 8px);
}

/* ---------- Tipografia ---------- */
h1,
h2,
h3 {
  line-height: 1.18;
  font-weight: 700;
  color: var(--texto);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  color: var(--texto-suave);
}

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

.grad-text-light {
  background: linear-gradient(135deg, #bfe7ff 0%, #8fd4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azul-intenso);
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 5px rgba(27, 148, 246, 0.12);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--texto-suave);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.02rem;
}

.btn-xl {
  padding: 19px 46px;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(27, 148, 246, 0.55);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(27, 148, 246, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--texto);
  border-color: var(--borda);
  box-shadow: none;
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--azul);
  color: var(--azul-intenso);
  background: rgba(27, 148, 246, 0.05);
}

.btn-accent {
  color: var(--azul-intenso);
}

.btn-white {
  background: #fff;
  color: var(--azul-intenso);
  box-shadow: 0 18px 40px -16px rgba(6, 40, 68, 0.45);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -18px rgba(6, 40, 68, 0.5);
}

.btn-block {
  width: 100%;
}

.btn-header {
  padding: 11px 22px;
  font-size: 0.92rem;
}

.center {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s, border-color 0.35s, background 0.35s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--borda);
  box-shadow: 0 8px 30px -18px rgba(27, 148, 246, 0.28);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--grad);
  box-shadow: 0 10px 22px -10px rgba(27, 148, 246, 0.55);
  overflow: hidden;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--texto);
}

.logo-text small {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--azul-intenso);
  letter-spacing: 0.04em;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--texto-suave);
  padding: 9px 15px;
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}

.nav-link:hover {
  color: var(--azul-intenso);
  background: rgba(27, 148, 246, 0.06);
}

.chev {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}

.has-dropdown:hover .chev,
.has-dropdown.open .chev {
  transform: rotate(180deg);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 262px;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 9px;
  box-shadow: 0 24px 50px -20px rgba(27, 148, 246, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--texto-suave);
  padding: 11px 15px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s, padding-left 0.25s;
}

.dropdown a:hover {
  color: var(--azul-intenso);
  background: rgba(27, 148, 246, 0.07);
  padding-left: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--borda);
  background: #fff;
  z-index: 1102;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--texto);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 90px;
  background:
    radial-gradient(1000px 460px at 88% -10%, rgba(100, 206, 249, 0.28), transparent 60%),
    radial-gradient(760px 420px at 0% 110%, rgba(62, 172, 239, 0.16), transparent 55%),
    linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.blob-1 {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -120px;
  background: rgba(100, 206, 249, 0.4);
}

.blob-2 {
  width: 340px;
  height: 340px;
  left: -160px;
  top: 42%;
  background: rgba(62, 172, 239, 0.3);
}

.blob-3 {
  width: 260px;
  height: 260px;
  right: 12%;
  bottom: -120px;
  background: rgba(100, 206, 249, 0.35);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  margin: 6px 0 20px;
}

.hero-sub {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--texto-suave);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(27, 148, 246, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%231b94f6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* ---------- Composição visual do Hero ---------- */
.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.card-search {
  position: absolute;
  inset: 26px 0 auto auto;
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra);
  padding: 22px 22px 0;
  animation: floatY 7s ease-in-out infinite;
}

.g-row {
  display: flex;
  justify-content: center;
  gap: 1px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.g-g { color: #4285f4; }
.g-o1 { color: #ea4335; transform: rotate(-8deg); display: inline-block; }
.g-o2 { color: #fbbc05; transform: rotate(8deg); display: inline-block; }
.g-g2 { color: #4285f4; }
.g-l { color: #34a853; }
.g-e { color: #ea4335; transform: rotate(-8deg); display: inline-block; }

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--borda);
  border-radius: 999px;
  box-shadow: 0 4px 14px -8px rgba(27, 148, 246, 0.2);
  font-size: 0.92rem;
  color: var(--texto);
  margin-bottom: 16px;
}

.search-bar svg {
  width: 17px;
  height: 17px;
  color: var(--texto-fraco);
}

.result {
  background: var(--fundo-suave);
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 15px 16px;
  margin-bottom: 14px;
}

.result-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 6px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad);
  flex-shrink: 0;
}

.result-name {
  font-weight: 600;
  color: var(--texto);
  font-size: 0.98rem;
  line-height: 1.2;
}

.result-meta {
  font-size: 0.78rem;
  color: var(--texto-suave);
  line-height: 1.2;
}

.stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 0.9em;
}

.result-addr {
  font-size: 0.84rem;
  color: var(--texto-suave);
  margin-bottom: 10px;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--azul-intenso);
  background: #fff;
  border: 1px solid rgba(27, 148, 246, 0.25);
  border-radius: 999px;
  padding: 4px 11px;
}

.chip-open {
  background: rgba(52, 168, 83, 0.1);
  color: #1e8e3e;
  border-color: transparent;
}

.map-mini {
  position: relative;
  height: 60px;
  border-top: 1px solid var(--borda);
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  animation: pinBounce 2.6s ease-in-out infinite;
  filter: drop-shadow(0 6px 8px rgba(27, 148, 246, 0.35));
}

.map-pin svg {
  width: 100%;
  height: 100%;
}

/* Float cards */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  box-shadow: var(--sombra-suave);
  padding: 14px 16px;
}

.chart-card {
  top: -16px;
  left: -14px;
  width: 188px;
  animation: floatY 6s ease-in-out infinite 0.6s;
}

.fc-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--texto-fraco);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.fc-value {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.fc-chart {
  width: 100%;
  height: 40px;
}

.wa-card {
  right: -18px;
  bottom: 64px;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: floatY 7.5s ease-in-out infinite 1.2s;
}

.wa-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.wa-ico svg {
  width: 21px;
  height: 21px;
}

.fc-msg {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--texto);
}

.rating-card {
  right: 6px;
  bottom: -18px;
  width: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  animation: floatY 6.8s ease-in-out infinite 0.9s;
}

.fc-big {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--azul-intenso);
  grid-row: span 2;
}

.rating-card .stars {
  font-size: 0.72rem;
}

.fc-sub {
  grid-column: 2;
  font-size: 0.72rem;
  color: var(--texto-fraco);
}

/* ---------- Animations ---------- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -58%) translateY(-4px); }
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Faixa de autoridade ---------- */
.marquee {
  background: var(--grad);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
}

.marquee-set span {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.marquee-set span:nth-child(even) {
  opacity: 0.65;
  font-weight: 400;
}

/* ---------- Sobre ---------- */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  max-width: 400px;
}

.about-photo svg {
  width: 100%;
  height: auto;
}

.photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--borda);
  color: var(--azul-intenso);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(27, 148, 246, 0.4);
}

.photo-badge svg {
  width: 17px;
  height: 17px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p:not(.eyebrow) {
  margin-bottom: 16px;
  font-size: 1.03rem;
  max-width: 520px;
}

.about-content .btn {
  margin-top: 16px;
}

/* ---------- Serviços ---------- */
.services {
  background: var(--fundo-suave);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra);
  border-color: rgba(27, 148, 246, 0.3);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-suave);
  border: 1px solid rgba(27, 148, 246, 0.16);
  display: grid;
  place-items: center;
  color: var(--azul-intenso);
  margin-bottom: 22px;
  transition: background 0.35s, color 0.35s, transform 0.4s var(--ease);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-icon {
  background: var(--grad);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -10px rgba(27, 148, 246, 0.5);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.96rem;
  margin-bottom: 22px;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--azul-intenso);
  transition: gap 0.3s var(--ease);
}

.card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}

.card-link:hover {
  gap: 12px;
}

.card-link:hover svg {
  transform: translateX(2px);
}

/* ---------- Diferencial ---------- */
.differencial {
  background: #fff;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 8px;
}

.diff-item {
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--grad-suave);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.diff-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-suave);
}

.diff-num {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--azul-claro);
  display: inline-block;
  margin-bottom: 26px;
}

.diff-item h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.diff-item p {
  font-size: 0.93rem;
}

/* ---------- Portfólio ---------- */
.portfolio {
  background: var(--fundo-suave);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.project-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra);
}

.project-thumb {
  height: 190px;
  background: var(--grad-suave);
  border-bottom: 1px solid var(--borda);
}

.thumb-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--texto-fraco);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-image: repeating-linear-gradient(45deg, rgba(27, 148, 246, 0.04) 0 14px, transparent 14px 28px);
}

.project-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--azul-intenso);
  margin-bottom: 8px;
}

.project-body h3 {
  margin-bottom: 4px;
}

.project-meta {
  font-size: 0.86rem;
  color: var(--texto-fraco);
  margin-bottom: 12px;
}

.project-result {
  font-size: 0.93rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ---------- Números ---------- */
.numbers {
  background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-profundo-2) 60%, var(--azul-escuro) 100%);
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 85% 0%, rgba(100, 206, 249, 0.22), transparent 60%);
}

.section-head.light h2 {
  color: #fff;
}

.numbers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.number-item {
  text-align: center;
  padding: 30px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.number-value {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.number-value .grad-text-light {
  background: linear-gradient(135deg, #bfe7ff, #8fd4ff);
}

.number-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- CTA principal ---------- */
.cta-section {
  position: relative;
  background: var(--grad);
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  background: rgba(255, 255, 255, 0.5);
}

.cta-blob-1 {
  width: 340px;
  height: 340px;
  top: -120px;
  left: -100px;
}

.cta-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -160px;
  right: -120px;
}

.cta-inner {
  position: relative;
  max-width: 760px;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  margin-bottom: 20px;
}

.cta-inner h2 span {
  background: linear-gradient(135deg, #e6f6ff, #bfe7ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0 auto 38px;
}

/* ---------- Contato ---------- */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 18px;
}

.contact-info > p:not(.eyebrow) {
  margin-bottom: 30px;
  max-width: 460px;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto-suave);
}

.contact-note svg {
  width: 20px;
  height: 20px;
  color: var(--azul-intenso);
}

.contact-form {
  background: var(--fundo-suave);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--sombra-suave);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--borda);
  border-radius: 13px;
  background: #fff;
  color: var(--texto);
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--texto-fraco);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--azul-intenso);
  box-shadow: 0 0 0 4px rgba(27, 148, 246, 0.12);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238295a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-hint {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.4em;
}

.form-hint.ok {
  color: #1e8e3e;
}

.form-hint.err {
  color: #d93025;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, var(--azul-profundo) 0%, var(--azul-profundo-2) 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 84px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 44px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-footer .logo-text strong {
  color: #fff;
}

.logo-footer .logo-text small {
  color: var(--azul-claro);
}

.footer-desc {
  margin-top: 20px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.66);
  max-width: 300px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s, padding-left 0.25s;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.social-links li a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.social-links svg {
  width: 19px;
  height: 19px;
  color: var(--azul-claro);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 30px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  opacity: 0.4;
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 0;
}

.wa-float-ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.35s var(--ease);
  animation: pulseRing 2.8s ease-out infinite;
}

.wa-float-ico svg {
  width: 32px;
  height: 32px;
}

.wa-float:hover .wa-float-ico {
  transform: scale(1.08);
}

.wa-float-tip {
  background: #fff;
  border: 1px solid var(--borda);
  color: var(--texto);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: var(--sombra-suave);
  margin-right: 14px;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.wa-float:hover .wa-float-tip {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-visual {
    min-height: 500px;
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo {
    max-width: 380px;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .btn-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    background: #fff;
    padding: calc(var(--header-h) + 16px) 26px 34px;
    box-shadow: -30px 0 60px -30px rgba(27, 148, 246, 0.4);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    z-index: 1101;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-link {
    font-size: 1.08rem;
    padding: 14px 16px;
    justify-content: space-between;
  }

  .chev {
    width: 16px;
    height: 16px;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(27, 148, 246, 0.2);
    border-radius: 0;
    margin: 2px 0 10px 18px;
    padding: 0;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 14px;
    transition: max-height 0.4s var(--ease);
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown.open .dropdown {
    transform: none;
    max-height: 360px;
  }

  .dropdown a {
    font-size: 0.98rem;
    color: var(--texto-suave);
  }

  .dropdown a:hover {
    background: rgba(27, 148, 246, 0.07);
    padding-left: 18px;
  }

  .mobile-cta {
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .section {
    padding: 76px 0;
  }

  .container {
    width: min(1160px, 100% - 40px);
  }

  .hero {
    padding-top: calc(var(--header-h) + 44px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    min-height: 440px;
    transform: scale(0.92);
    transform-origin: top center;
    margin-top: -20px;
  }

  .card-search {
    width: 100%;
  }

  .float-card {
    transform: scale(0.92);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .wa-float {
    right: 18px;
    bottom: 18px;
  }

  .wa-float-ico {
    width: 54px;
    height: 54px;
  }

  .wa-float-tip {
    display: none;
  }

  .cta-section {
    padding: 80px 0;
  }

  .btn-xl {
    width: 100%;
    padding: 17px 30px;
  }
}
