/* ==========================================================================
   Flow Compliance — Landing Page
   ========================================================================== */

:root {
  --graphite: #323f44;
  --graphite-deep: #1c2427;
  --graphite-soft: #4a585e;
  --teal: #87c9c0;
  --teal-deep: #5fa79c;
  --orange: #ff6d00;
  --orange-deep: #e05e00;
  --cream: #fffbf5;
  --white: #ffffff;

  --text-body: #4a545a;
  --text-muted: #7c8a90;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 16px rgba(50, 63, 68, 0.08);
  --shadow-md: 0 12px 32px rgba(50, 63, 68, 0.12);
  --shadow-lg: 0 24px 60px rgba(50, 63, 68, 0.18);

  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--graphite);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
}

p { line-height: 1.7; margin: 0 0 1em; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--teal); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 109, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 109, 0, 0.45);
}
.btn-primary:hover::after { left: 130%; }

.btn-whatsapp {
  background: linear-gradient(135deg, #2fdb76, #1fb355);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp:hover::after { left: 130%; }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

.ico-wpp { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(28, 36, 39, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo { height: 32px; width: auto; }

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 15% 0%, #2a3438 0%, var(--graphite-deep) 55%, #141a1c 100%);
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-wave {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 55%;
  opacity: 0.9;
}
.wave-path {
  fill: none;
  stroke-width: 2;
}
.wave-path-1 {
  stroke: url(#none);
  stroke: var(--orange);
  opacity: .55;
  animation: waveFloat 9s ease-in-out infinite;
}
.wave-path-2 {
  stroke: var(--teal);
  opacity: .4;
  animation: waveFloat 11s ease-in-out infinite reverse;
}

@keyframes waveFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-24px) translateX(14px); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: var(--orange);
  top: -140px; right: -120px;
}
.hero-glow-2 {
  width: 420px; height: 420px;
  background: var(--teal);
  bottom: -160px; left: -100px;
  animation-delay: 2s;
}
@keyframes glowPulse {
  0%, 100% { opacity: .25; transform: scale(1); }
  50% { opacity: .45; transform: scale(1.12); }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
}

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

.badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(255,109,0,0.12);
  border: 1px solid rgba(255,109,0,0.4);
  color: #ffb37a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.text-grad {
  background: linear-gradient(120deg, var(--orange) 10%, #ffb37a 45%, var(--teal) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 109, 0, 0.35));
}

.hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 36px;
}

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

.hero-microcopy {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 36px;
}
.hero-stat {
  color: var(--white);
  position: relative;
}
.hero-stat-number, .hero-stat-prefix, .hero-stat-suffix {
  font-size: 34px;
  font-weight: 700;
  color: var(--teal);
}
.hero-stat-prefix { font-size: 20px; margin-right: 2px; }
.hero-stat-suffix { font-size: 22px; }
.hero-stat-label {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  margin-top: 6px;
  max-width: 220px;
  line-height: 1.5;
}

/* ---------- Hero visual (single image) ---------- */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-lg) + 8px);
  background: linear-gradient(135deg, var(--orange), var(--teal));
  opacity: .55;
  z-index: -1;
  filter: blur(2px);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid var(--graphite-deep);
  display: block;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(28,36,39,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: heroChipFloat 6s ease-in-out infinite;
  white-space: nowrap;
}
.hero-chip svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.hero-chip-1 { top: 8%; right: -10px; animation-delay: .2s; }
.hero-chip-2 { top: 46%; left: -26px; animation-delay: 1.4s; }
.hero-chip-3 { bottom: 10%; right: 4%; animation-delay: 2.4s; }
.hero-chip-2 svg, .hero-chip-3 svg { color: var(--orange); }

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

/* ---------- Wave section divider ---------- */

.section-wave-divider {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
  z-index: 3;
  line-height: 0;
}
.section-wave-divider svg { width: 100%; height: 100%; }
.section-wave-divider path { fill: var(--cream); }

/* ==========================================================================
   Sections — generic
   ========================================================================== */

.section { padding: 110px 0; }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { color: var(--text-muted); font-size: 16.5px; }
.section-head-light h2 { color: var(--white); }
.section-head-light p { color: rgba(255,255,255,0.68); }

.grid { display: grid; gap: 28px; }
.grid > * { min-width: 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid rgba(50,63,68,0.05);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 0; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,109,0,0.12), rgba(135,201,192,0.18));
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }

.section-dor { background: var(--cream); }

.card-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(135,201,192,0.16);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-atuacao {
  background:
    radial-gradient(rgba(50,63,68,0.07) 1.4px, transparent 1.4px) 0 0/26px 26px,
    var(--white);
}
.card-atuacao:nth-child(3n+2) .card-icon,
.card-atuacao:nth-child(3n+3) .card-icon {
  color: var(--teal-deep);
  background: linear-gradient(135deg, rgba(135,201,192,0.18), rgba(255,109,0,0.08));
}

/* ==========================================================================
   Sobre / Sócios
   ========================================================================== */

.section-sobre { background: var(--white); padding-bottom: 0; }

.sobre-intro {
  max-width: 780px;
  margin: 0 auto 96px;
  text-align: center;
}
.sobre-intro h2 { font-size: clamp(26px, 3.2vw, 36px); }
.sobre-intro p { font-size: 16.5px; text-align: left; }

.sobre-pillars {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.sobre-pillars li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-body);
}
.sobre-pillars li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--teal));
}
.sobre-pillars strong { color: var(--graphite); }

/* ---------- Sócios spotlight ---------- */

.socios-spotlight {
  background: linear-gradient(160deg, var(--graphite-deep), #232d31);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.socios-spotlight::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,109,0,0.16), transparent 70%);
  top: -220px; right: -160px;
  pointer-events: none;
}
.socios-spotlight::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135,201,192,0.14), transparent 70%);
  bottom: -220px; left: -140px;
  pointer-events: none;
}

.socios-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.socio-spotlight {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--orange), var(--teal)) 1;
}
.socio-spotlight:hover { transform: translateY(-8px); }

.socio-spotlight-photo {
  width: 168px; height: 168px;
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 22px;
  background: conic-gradient(from 200deg, var(--teal), var(--orange), var(--graphite), var(--teal));
  flex-shrink: 0;
}
.socio-spotlight-photo img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cream);
  display: block;
}

.socio-role-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--orange), var(--orange-deep));
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.socio-spotlight h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.socio-quote {
  font-size: 15.5px;
  font-style: italic;
  font-weight: 500;
  color: var(--graphite);
  border-left: 3px solid var(--teal);
  padding-left: 14px;
  text-align: left;
  margin-bottom: 18px;
}

.socio-bio {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.socio-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.socio-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(135,201,192,0.18);
  color: var(--teal-deep);
}
.socio-spotlight:nth-child(1) .socio-tags span { background: rgba(255,109,0,0.1); color: var(--orange-deep); }

/* ==========================================================================
   Serviços / Método (dark)
   ========================================================================== */

.section-servicos {
  background: linear-gradient(160deg, var(--graphite-deep), #232d31);
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
}
.step-number {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 { color: var(--white); font-size: 17.5px; }
.step p { color: rgba(255,255,255,0.62); font-size: 14px; margin-bottom: 0; }

/* ==========================================================================
   Certificações
   ========================================================================== */

.section-certificacoes { background: var(--cream); }

.cert-badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--graphite), var(--graphite-soft));
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.cert-badge svg { width: 26px; height: 26px; }

.card-cert { text-align: left; }

/* ==========================================================================
   Conteúdo / Artigos
   ========================================================================== */

.section-conteudo { background: var(--white); }

.card-article {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-thumb svg { width: 42px; height: 42px; color: rgba(255,255,255,0.92); }
.article-thumb-1 { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); }
.article-thumb-2 { background: linear-gradient(135deg, var(--graphite), var(--graphite-soft)); }
.article-thumb-3 { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.article-thumb-4 { background: linear-gradient(135deg, var(--teal-deep), var(--graphite)); }
.article-thumb-5 { background: linear-gradient(135deg, var(--orange-deep), var(--graphite)); }
.article-thumb-6 { background: linear-gradient(135deg, var(--orange), var(--teal)); }

.article-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-body h3 { font-size: 17.5px; margin: 12px 0 10px; }
.article-body > p { font-size: 14px; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.article-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  transition: gap .25s var(--ease), color .2s ease;
}
.article-link:hover { gap: 11px; color: var(--orange-deep); }
.article-link svg { width: 16px; height: 16px; }

/* ---------- Article dialog (popup) ---------- */

dialog.article-dialog {
  border: none;
  padding: 0;
  width: min(92vw, 640px);
  max-height: 86vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  opacity: 0;
  transform: translateY(24px) scale(.98);
  transition: opacity .3s var(--ease), transform .3s var(--ease), overlay .3s allow-discrete, display .3s allow-discrete;
}
dialog.article-dialog[open] {
  opacity: 1;
  transform: none;
}
@starting-style {
  dialog.article-dialog[open] { opacity: 0; transform: translateY(24px) scale(.98); }
}
dialog.article-dialog::backdrop {
  background: rgba(28,36,39,0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s ease;
}
dialog.article-dialog[open]::backdrop { opacity: 1; }
@starting-style {
  dialog.article-dialog[open]::backdrop { opacity: 0; }
}

.article-dialog-inner {
  position: relative;
  padding: 44px 40px 40px;
  max-height: 86vh;
  overflow-y: auto;
}

.article-dialog-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.article-dialog-close:hover {
  background: rgba(255,109,0,0.12);
  color: var(--orange);
  transform: rotate(90deg);
}

.article-dialog h2 {
  font-size: 25px;
  margin: 14px 0 8px;
  padding-right: 20px;
}
.article-dialog-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.article-dialog-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 16px;
}
.article-dialog-content { margin-bottom: 28px; }

/* ==========================================================================
   CTA strip
   ========================================================================== */

.cta-strip {
  background: linear-gradient(120deg, var(--orange), #ff8a3d);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 8px;
}
.cta-strip p {
  color: rgba(255,255,255,0.9);
  font-size: 15.5px;
  margin-bottom: 0;
  max-width: 480px;
}
.cta-strip .btn-whatsapp {
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.cta-strip .btn-whatsapp:hover { box-shadow: 0 16px 36px rgba(0,0,0,0.35); }

/* ==========================================================================
   Contato
   ========================================================================== */

.section-contato { background: var(--white); }

.grid-contato {
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contato-info h2 { font-size: clamp(24px, 3vw, 32px); }
.contato-info p { font-size: 15.5px; }

.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f4fbfa, #edf7f5);
  border: 1px solid rgba(135,201,192,0.35);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 28px 0 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.whatsapp-card-ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.whatsapp-card-ico svg { width: 24px; height: 24px; }
.whatsapp-card-text { min-width: 0; }
.whatsapp-card strong { display: block; color: var(--graphite); font-size: 15.5px; }
.whatsapp-card small { color: var(--text-muted); font-size: 13px; }

.contato-alt { font-size: 14.5px; color: var(--text-muted); }
.contato-alt a { color: var(--graphite); font-weight: 600; }
.contato-alt a:hover { color: var(--orange); }

.contato-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(50,63,68,0.06);
}

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 8px;
}
.form-row input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(50,63,68,0.14);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: var(--graphite);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(135,201,192,0.2);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid rgba(50,63,68,0.1);
  transition: border-color .2s ease, background .2s ease;
}
.check-item:hover { border-color: var(--teal); }
.check-item input { accent-color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.check-item span { min-width: 0; overflow-wrap: break-word; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 14px 0 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--graphite-deep); color: rgba(255,255,255,0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.72); transition: color .2s ease; }
.footer-nav a:hover { color: var(--teal); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a { font-size: 14px; color: rgba(255,255,255,0.72); transition: color .2s ease; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom p { margin: 0; font-size: 12.5px; color: rgba(255,255,255,0.4); text-align: center; }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */

.wpp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  z-index: 400;
  animation: wppPulse 2.6s ease-in-out infinite;
  transition: transform .25s var(--ease), opacity .25s ease;
}
.wpp-float:hover { transform: scale(1.08); }
body.modal-open .wpp-float { opacity: 0; pointer-events: none; }
.wpp-float svg { width: 30px; height: 30px; }

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.grid .reveal:nth-child(2) { transition-delay: .08s; }
.grid .reveal:nth-child(3) { transition-delay: .16s; }
.grid .reveal:nth-child(4) { transition-delay: .24s; }
.grid .reveal:nth-child(5) { transition-delay: .32s; }
.grid .reveal:nth-child(6) { transition-delay: .4s; }
.steps .reveal:nth-child(2) { transition-delay: .1s; }
.steps .reveal:nth-child(3) { transition-delay: .2s; }
.steps .reveal:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .wpp-float, .wave-path, .hero-glow, .hero-photo, .hero-chip, .card, .step, .socio-spotlight { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-contato { grid-template-columns: 1fr; }
  .socios-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 22px; }
  .hero-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-content { max-width: none; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hero-photo-frame { max-width: 280px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--graphite-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    margin: 0;
    z-index: 600;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { font-size: 18px; }
  .nav-toggle { display: flex; z-index: 700; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-cta { display: none; }

  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .socios-grid { max-width: 340px; }
  .socio-spotlight { padding: 32px 24px; }
  .article-dialog-inner { padding: 56px 22px 28px; }
  .article-dialog h2 { font-size: 21px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-nav, .footer-contact { align-items: center; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .contato-form { padding: 28px; }
  .section { padding: 76px 0; }
  .hero { padding: 120px 0 60px; }
  .sobre-intro { margin-bottom: 64px; }
  .socios-spotlight { padding: 72px 0 80px; }
  .hero-chip { font-size: 11px; padding: 7px 12px; }
  .hero-chip-2 { left: -12px; }
}
