/* ════════════════════════════════════════════════════════════
   ODONTO SOULFAN — Stylesheet
   Inspirado no design system de referência
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Cores */
  --azul:        #1A4D8C;
  --azul-claro:  #2A6FB8;
  --azul-bg:     #EBF4FC;
  --azul-deep:   #0F2D52;
  --dourado:     #B8953F;
  --dourado-bg:  #F5EDD6;
  --branco:      #FFFFFF;
  --off-white:   #FAFBFC;
  --cinza-1:     #5A6475;
  --cinza-2:     #8A95A8;
  --cinza-bg:    #F0F3F7;
  --preto:       #0F1419;
  --verde-wpp:   #25D366;

  /* Tipografia */
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(15,45,82,.08);
  --shadow:     0 8px 32px rgba(15,45,82,.10);
  --shadow-lg:  0 16px 56px rgba(15,45,82,.16);
  --shadow-xl:  0 24px 72px rgba(15,45,82,.20);

  /* Bordas */
  --r-sm: 8px;
  --r:    16px;
  --r-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--preto);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITÁRIOS ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }
.text-center { text-align: center; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul);
  background: var(--azul-bg);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag-light {
  color: var(--branco);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}

.h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--preto);
  letter-spacing: -.02em;
}
.h1 .highlight {
  color: var(--azul);
  position: relative;
  white-space: nowrap;
}
.h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 12px;
  background: var(--dourado-bg);
  z-index: -1;
  border-radius: 4px;
}

.h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--preto);
  letter-spacing: -.02em;
}
.h2.light { color: var(--branco); }

.h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.lead {
  font-size: 1.05rem;
  color: var(--cinza-1);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.divider {
  width: 56px; height: 4px;
  background: var(--azul);
  border-radius: 2px;
  margin: 18px 0 24px;
}
.divider.center { margin: 18px auto 24px; }

/* ── BOTÕES ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-primary {
  background: var(--azul);
  color: var(--branco);
  box-shadow: 0 8px 24px rgba(26,77,140,.30);
}
.btn-primary:hover {
  background: var(--azul-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,77,140,.40);
}
.btn-ghost {
  background: transparent;
  color: var(--preto);
  padding: 14px 24px;
}
.btn-ghost:hover { color: var(--azul); }
.btn-ghost .play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--azul);
  color: var(--branco);
  border-radius: 50%;
  font-size: .7rem;
  padding-left: 3px;
  margin-right: 4px;
}

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--azul);
  color: var(--branco);
  font-size: .82rem;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-info {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.92);
  transition: color .2s;
}
.topbar-link:hover { color: var(--branco); }
.topbar-social {
  display: flex; gap: 12px;
}
.topbar-social a {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  transition: all .2s;
}
.topbar-social a:hover { background: rgba(255,255,255,.22); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: var(--branco);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--azul);
  color: var(--branco);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--preto);
  letter-spacing: -.02em;
}
.logo-tag {
  font-size: .68rem;
  color: var(--cinza-2);
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--cinza-1);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 2px;
  background: var(--azul);
  transition: all .25s;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--azul); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--preto);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--branco) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--branco);
  border: 1px solid var(--cinza-bg);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--cinza-1);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-pill svg { color: var(--dourado); }

.hero-content .h1 { margin-bottom: 24px; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--cinza-bg);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--azul);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: var(--cinza-2);
  margin-top: 4px;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.hero-blob {
  position: absolute;
  width: 460px; height: 460px;
  background: var(--azul);
  border-radius: 50%;
  z-index: 1;
}
.hero-blob::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(26,77,140,.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  width: 420px;
  height: 480px;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
}

.hero-floating-card {
  position: absolute;
  background: var(--branco);
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hero-card-1 {
  top: 20%; left: -20px;
  animation-delay: 0s;
}
.hero-card-2 {
  bottom: 15%; right: -10px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floating-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dourado-bg);
  color: var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.floating-icon.green {
  background: rgba(37,211,102,.15);
  color: var(--verde-wpp);
}
.floating-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--preto);
  line-height: 1.2;
}
.floating-sub {
  font-size: .72rem;
  color: var(--cinza-2);
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee {
  background: var(--azul);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--branco);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.marquee-item svg { color: rgba(255,255,255,.4); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── SOBRE ───────────────────────────────────────────────── */
.sobre { background: var(--branco); }
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-visual {
  position: relative;
  height: 480px;
}
.sobre-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 90%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sobre-img-main svg,
.sobre-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.sobre-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 50%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 8px solid var(--branco);
  box-shadow: var(--shadow);
}
.sobre-img-2 svg,
.sobre-img-2 img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sobre-circle-badge {
  position: absolute;
  bottom: 60%; right: 32%;
  width: 100px; height: 100px;
  z-index: 3;
}
.sobre-circle-badge svg {
  width: 100%; height: 100%;
  animation: rotate 18s linear infinite;
}
.sobre-circle-badge .badge-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-circle-badge .badge-icon::before {
  content: '';
  position: absolute;
  width: 60%; height: 60%;
  background: var(--azul);
  border-radius: 50%;
  z-index: -1;
}

.sobre-content { padding-left: 24px; }
.sobre-checks {
  margin: 24px 0 32px;
}
.sobre-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: .98rem;
  color: var(--preto);
  font-weight: 500;
}
.sobre-checks li svg {
  width: 24px; height: 24px;
  flex-shrink: 0;
}

/* ── SERVIÇOS ────────────────────────────────────────────── */
.servicos {
  background: var(--off-white);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.servicos-cta { flex-shrink: 0; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servico-card {
  background: var(--branco);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--cinza-bg);
  transition: all .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--azul-bg);
}
.servico-card.destaque {
  background: var(--azul);
  border-color: var(--azul);
  color: var(--branco);
}
.servico-card.destaque .h3 { color: var(--branco); }
.servico-card.destaque p { color: rgba(255,255,255,.85); }
.servico-card.destaque .servico-link { color: var(--branco); }

.servico-img {
  width: 100%;
  height: 180px;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.servico-img svg,
.servico-img img { width: 100%; height: 100%; object-fit: cover; }

.servico-icon {
  width: 48px; height: 48px;
  background: var(--azul);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 156px; left: 40px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.servico-icon svg { width: 22px; height: 22px; }

.servico-card .h3 { margin-top: 16px; }
.servico-card p {
  font-size: .9rem;
  color: var(--cinza-1);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}
.servico-link {
  display: inline-block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--azul);
  transition: gap .2s;
}
.servico-link:hover { letter-spacing: .03em; }

.badge-estetico {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--dourado);
  color: var(--branco);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 3;
}

/* ── RESULTADOS ─────────────────────────────────────────── */
.resultados {
  background: var(--branco);
}
.resultados-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.resultado-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease;
}
.resultado-card:hover { transform: translateY(-4px); }
.resultado-img {
  width: 100%;
  height: 280px;
}
.resultado-img svg,
.resultado-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.resultado-info { padding: 24px 28px; }
.resultado-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 8px;
}
.resultados-cta {
  text-align: center;
  margin-top: 48px;
  font-size: 1rem;
  color: var(--cinza-1);
}
.resultados-cta a {
  color: var(--azul);
  font-weight: 600;
}

/* ── DEPOIMENTOS ────────────────────────────────────────── */
.depoimentos {
  background: var(--azul);
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.04), transparent 70%);
  border-radius: 50%;
  top: -200px; right: -200px;
}
.depoimentos::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,149,63,.08), transparent 70%);
  border-radius: 50%;
  bottom: -150px; left: -150px;
}
.depoimentos .container { position: relative; z-index: 2; }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  background: var(--branco);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: #FBBC04;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.depoimento-texto {
  font-size: .95rem;
  color: var(--cinza-1);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}
.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cinza-bg);
}
.avatar {
  width: 44px; height: 44px;
  background: var(--azul-bg);
  color: var(--azul);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.autor-nome {
  font-weight: 700;
  font-size: .92rem;
  color: var(--preto);
}
.autor-info {
  font-size: .76rem;
  color: var(--cinza-2);
}

.google-badge {
  margin-top: 56px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 16px 32px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: var(--branco);
}
.google-badge strong {
  font-size: 1.5rem;
  font-weight: 800;
}
.google-badge .stars { margin: 0; }

/* ── CONTATO ────────────────────────────────────────────── */
.contato {
  background: var(--off-white);
}
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contato-list {
  margin: 32px 0;
}
.contato-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cinza-bg);
}
.contato-list li:last-child { border-bottom: none; }
.contato-icon {
  width: 44px; height: 44px;
  background: var(--azul-bg);
  color: var(--azul);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-icon svg { width: 22px; height: 22px; }
.contato-list strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--cinza-2);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.contato-list a, .contato-list p {
  font-size: 1rem;
  color: var(--preto);
  font-weight: 500;
  line-height: 1.5;
}
.contato-list a:hover { color: var(--azul); }

.contato-mapa iframe {
  box-shadow: var(--shadow-lg);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--azul-deep);
  color: rgba(255,255,255,.8);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.logo-footer .logo-mark {
  background: var(--branco);
  color: var(--azul);
}
.logo-footer .logo-name { color: var(--branco); }
.logo-footer .logo-tag { color: rgba(255,255,255,.5); }

.footer-desc {
  margin-top: 20px;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
}

.footer-col h4 {
  color: var(--branco);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--branco); }

.footer-base {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ── BOTÃO FLUTUANTE ────────────────────────────────────── */
.float-wpp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--verde-wpp);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 99;
  transition: transform .25s;
  animation: pulse-wpp 2s infinite;
}
.float-wpp svg { width: 30px; height: 30px; }
.float-wpp:hover { transform: scale(1.08); }
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.15); }
}

/* ── ESTRUTURA ──────────────────────────────────────────────── */
.estrutura { background: var(--azul-bg); }

.estrutura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.estrutura-img {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.estrutura-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.estrutura-img:hover img { transform: scale(1.04); }

.estrutura-grande {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.estrutura-larga {
  grid-column: 2 / 4;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 968px) {
  .section { padding: 64px 0; }

  .hero-inner,
  .sobre-inner,
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { min-height: 380px; }
  .hero-blob { width: 320px; height: 320px; }
  .hero-image-wrapper { width: 300px; height: 380px; }
  .hero-floating-card { padding: 10px 14px; }
  .hero-card-1 { left: 0; }
  .hero-card-2 { right: 0; }

  .estrutura-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .estrutura-grande {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .estrutura-larga {
    grid-column: 1 / 3;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .resultados-grid {
    grid-template-columns: 1fr;
  }
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-links {
    position: fixed;
    top: 110px; left: 0; right: 0;
    background: var(--branco);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-200%);
    transition: transform .3s;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .topbar-info { font-size: .75rem; gap: 16px; }
}

@media (max-width: 640px) {
  .h1 { font-size: 2rem; }
  .h2 { font-size: 1.6rem; }
  .estrutura-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .estrutura-grande, .estrutura-larga {
    grid-row: auto;
    grid-column: auto;
  }
  .servicos-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .topbar-info { display: none; }
  .marquee-item { font-size: 1.1rem; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .float-wpp { width: 54px; height: 54px; }
  .float-wpp svg { width: 26px; height: 26px; }
}
