﻿:root {
  --blue:   #4285F4;
  --green:  #34A853;
  --yellow: #FBBC05;
  --red:    #EA4335;
  --ink:    #0F1923;
  --ink-2:  #2D3748;
  --ink-3:  #4A5568;
  --ink-4:  #718096;
  --line:   #E2E8F0;
  --line-s: #EDF2F7;
  --bg:     #FFFFFF;
  --bg-soft:#F5F7FA;
  --blue-bg:rgba(66,133,244,0.07);
  --green-bg:rgba(52,168,83,0.07);
  --yellow-bg:rgba(251,188,5,0.08);
  --red-bg:rgba(234,67,53,0.07);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.65; overflow-x: hidden; font-size: 16px;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  padding: 10px 14px; background: #fff; color: var(--ink);
  border-radius: 6px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 88px 0; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,15,20,0.96); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hdr-inner {
  max-width: 1160px; margin: 0 auto; padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.hdr-logo { display: block; flex: 0 0 auto; }
.hdr-logo img{
  width: 250px; max-width: 100%; height: auto; display: block;
}
.hdr-nav { display: flex; align-items: center; gap: 24px; }
.hdr-nav a {
  color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-decoration: none; transition: color .2s;
}
.hdr-nav a:hover, .hdr-nav a:focus-visible { color: #fff; }
.hdr-nav .hdr-nav-cta {
  padding: 9px 16px; color: var(--ink); background: var(--blue);
  border-radius: 999px;
}
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: #fff; transition: transform .2s, opacity .2s; }
section[id] { scroll-margin-top: 76px; }

@media(max-width:820px){
  .hdr-inner{padding:10px 16px}
  .hdr-logo img{width:210px}
  .menu-toggle{display:block}
  .hdr-nav{
    position:absolute; top:100%; left:0; right:0; display:none;
    padding:18px 20px 22px; background:rgba(10,15,20,.98);
    border-top:1px solid rgba(255,255,255,.07); flex-direction:column; align-items:stretch; gap:0;
  }
  .hdr-nav.open{display:flex}
  .hdr-nav a{padding:13px 4px;font-size:.9rem}
  .hdr-nav .hdr-nav-cta{margin-top:8px;text-align:center}
  .menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .menu-toggle.open span:nth-child(2){opacity:0}
  .menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}

/* ── HERO ── */
.hero {
  padding: 0;
  background: var(--ink); min-height: 90vh;
  display: flex; flex-direction: column;
}
.hero-visual {
  flex: 1; position: relative; min-height: 90vh;
  display: flex; align-items: stretch;
}
.hero-photo {
  width: 50%; background: linear-gradient(135deg,#1a2535 0%,#0d1620 100%);
  min-height: 540px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-photo-inner {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 14px
    );
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-inner img,
.pilar-photo > img,
.case-visual > img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.hero-photo-inner img { object-position: center 25%; }
.pilar-photo > img {
  position: absolute; inset: 0; object-position: center;
}
.hero-content {
  width: 50%; padding: 64px 52px 64px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-selo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--green); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-selo::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(52,168,83,0.6);
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.55);
  font-weight: 400; line-height: 1.65; max-width: 46ch;
}

/* ── BIG NUMBERS (ajuste 4 + 5) ── */
.stats-band {
  background: var(--bg-soft);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 3rem; font-weight: 800; line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 6px; color: var(--ink);
}
.stat-num.c-blue  { color: var(--blue); }
.stat-num.c-green { color: var(--green); }
.stat-num.c-yellow { color: #B8860B; }
.stat-num.c-red   { color: var(--red); }
.stat-label {
  font-size: 0.85rem; font-weight: 700; color: var(--ink);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em;
}
.stat-ctx { font-size: 0.78rem; color: var(--ink-4); font-weight: 400; }

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.tag-blue   { background: var(--blue-bg);   color: var(--blue);  border: 1px solid rgba(66,133,244,0.2); }
.tag-green  { background: var(--green-bg);  color: #217538;      border: 1px solid rgba(52,168,83,0.2); }
.tag-yellow { background: var(--yellow-bg); color: #7a5c00;      border: 1px solid rgba(251,188,5,0.25); }
.tag-red    { background: var(--red-bg);    color: #b03228;      border: 1px solid rgba(234,67,53,0.2); }
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 16px; max-width: 22ch; line-height: 1.15;
}
.section-lead {
  font-size: clamp(1.05rem, 3.5vw, 1.1rem); color: var(--ink-3); max-width: 70ch;
  margin-bottom: 52px; font-weight: 400; line-height: 1.8;
}

/* ── PILARES NAV ── */
.pilares-nav {
  background: var(--ink);
}
.pilares-nav-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.pilares-nav-container { padding-inline: 28px; }
.pilar-tab {
  padding: 28px 24px; cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease; text-align: left;
  text-decoration: none; display: block;
}
.pilar-tab:last-child { border-right: none; }
.pilar-tab:hover { background: rgba(255,255,255,0.04); }
.pilar-tab.active { border-bottom-color: var(--blue); }
.pilar-tab-icon {
  font-size: 1.4rem; margin-bottom: 10px; display: block;
}
.pilar-tab-name {
  font-size: 0.82rem; font-weight: 700; color: #fff;
  letter-spacing: 0.04em; margin-bottom: 4px; display: block;
}
.pilar-tab-desc {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); display: block;
}

/* ── PILAR SECTION BASE ── */
.pilar-section { padding: 88px 0; }
.pilar-section.alt { background: var(--bg-soft); }

/* ── PILAR INTRO (foto + texto) ── */
.pilar-intro {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 48px; align-items: start; margin-bottom: 52px;
}
.pilar-intro.reverse { grid-template-columns: 1fr 280px; }
.pilar-intro.reverse .pilar-photo { order: 2; }
.pilar-photo {
  background: linear-gradient(145deg, #1a2535, #0d1620);
  border-radius: 12px; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pilar-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 12px
  );
}
.pilar-photo-contain { padding: 0; }
.parc-tag {
  display: inline-flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap;
}
.parc-pill {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
}
.parc-pill.prob  { background: #FEE2E2; color: #991B1B; }
.parc-pill.acao  { background: #EFF6FF; color: #1D4ED8; }
.parc-pill.res   { background: #ECFDF5; color: #065F46; }
.parc-pill.cont  { background: #FEF3C7; color: #92400E; }
.pilar-text-area h3 {
  font-size: clamp(1.6rem, 4vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 14px; line-height: 1.15;
}
.pilar-text-area p {
  font-size: clamp(1rem, 3vw, 1rem); color: var(--ink-3); line-height: 1.8;
  margin-bottom: 12px;
}
.pilar-text-area p strong { color: var(--ink); font-weight: 600; }

/* ── RESULTS GRID 2x2 (ajuste 2) ── */
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.result-card {
  background: var(--bg); border: 1px solid var(--line);
  border-top: 4px solid; border-radius: 10px;
  padding: 22px 24px;
}
.result-card-image {
  display: block; width: 100%; aspect-ratio: 16 / 9;
  object-fit: cover; object-position: center;
  border-radius: 6px; margin-bottom: 18px;
}
.result-card.c-green  { border-top-color: var(--green); }
.result-card.c-blue   { border-top-color: var(--blue); }
.result-card.c-yellow { border-top-color: var(--yellow); }
.result-card.c-red    { border-top-color: var(--red); }
.rc-icon {
  font-size: 1.2rem; margin-bottom: 10px; display: block;
}
.rc-icon img { width: 100px; height: auto; }
.results-title {
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.rc-num {
  font-size: clamp(2rem, 5vw, 2.1rem); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 4px;
}
.rc-num.c-green  { color: var(--green); }
.rc-num.c-blue   { color: var(--blue); }
.rc-num.c-yellow { color: #7a5c00; }
.rc-num.c-red    { color: var(--red); }
.rc-label {
  font-size: 0.88rem; font-weight: 700; color: var(--ink);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}
.rc-ctx { font-size: 0.88rem; color: var(--ink-4); line-height: 1.55; }

/* ── QUOTE ── */
.quote-block {
  border-left: 4px solid var(--blue); padding: 20px 24px;
  background: var(--blue-bg); border-radius: 0 8px 8px 0;
  margin: 28px 0;
}
.quote-block p {
  font-size: 0.95rem; color: var(--ink-2); font-style: italic;
  line-height: 1.65;
}
.quote-block cite {
  display: block; margin-top: 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--blue);
  font-style: normal; letter-spacing: 0.05em;
}
.quote-block-spaced { margin-top: 36px; }

/* ── CASE INFRA ── */
.case-anchor {
  background: var(--ink); border-radius: 16px;
  padding: 44px 48px; margin-bottom: 40px;
  display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: stretch;
}
.case-kicker {
  font-size: 0.7rem; font-weight: 700; color: var(--blue);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.case-title {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.case-body p {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  margin-bottom: 12px; line-height: 1.7;
}
.case-body strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.case-meta {
  display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap;
}
.case-pill {
  font-size: 0.72rem; font-weight: 600; padding: 6px 14px;
  border-radius: 100px; border: 1px solid;
}
.case-pill.green { color: var(--green); border-color: rgba(52,168,83,0.4); }
.case-pill.blue  { color: var(--blue);  border-color: rgba(66,133,244,0.4); }
.case-visual {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 10px; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.case-visual span {
  font-size: 0.65rem; color: rgba(255,255,255,0.2);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ── LIDERANCA TIMELINE ── */
.lideranca-timeline {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  margin-top: 36px;
}
.lideranca-item {
  padding: 24px 22px; border-right: 1px solid var(--line);
  position: relative;
}
.lideranca-item:last-child { border-right: none; }
.li-period {
  font-size: 0.68rem; font-weight: 700; color: var(--blue);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px;
}
.li-role {
  font-size: 0.92rem; font-weight: 700; color: var(--ink);
  margin-bottom: 4px;
}
.li-gov { font-size: 0.78rem; color: var(--ink-4); }

/* ── FORMULARIO UNIFICADO (ajuste 6) ── */
.form-section {
  background: var(--ink); padding: 88px 0;
}
.form-inner {
  display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: start;
}
.form-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  letter-spacing: -0.025em; margin-bottom: 16px;
}
.form-left p {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  line-height: 1.65; margin-bottom: 0;
}
.form-left .hashtag {
  display: inline-block; margin-top: 24px;
  font-size: 0.82rem; font-weight: 700; color: var(--blue);
  letter-spacing: 0.06em;
}
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 36px 32px;
}
.form-field { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 7px;
}
.optional-label { font-weight: 400; letter-spacing: 0; text-transform: none; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 8px;
  padding: 12px 16px; font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; color: #fff; outline: none;
  transition: border-color 0.2s;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: rgba(66,133,244,0.6);
}
.form-field textarea { height: 90px; resize: none; }
.form-field.opt .form-label::after {
  content: ' (opcional)'; font-weight: 400; opacity: 0.6;
}
.form-btn {
  width: 100%; padding: 14px;
  background: var(--blue); border: none; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem;
  font-weight: 700; color: #fff; cursor: pointer; letter-spacing: 0.03em;
  transition: background 0.2s; margin-top: 4px;
}
.form-btn:hover { background: #1a73e8; }
.form-btn:disabled { cursor: not-allowed; opacity: 0.55; }
.form-privacy {
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  text-align: center; margin-top: 12px; line-height: 1.5;
}
.form-consent { display:flex; gap:10px; margin:16px 0; font-size:.75rem; line-height:1.55; color:rgba(255,255,255,.58); cursor:pointer; }
.form-consent input { width:18px; height:18px; margin-top:2px; flex:0 0 auto; accent-color:var(--blue); }
.form-consent a { color:#8ab4f8; }
.form-honeypot { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-status { margin-top:12px; color:#ffb4ab; font-size:.78rem; line-height:1.5; }
.form-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.08);
  margin: 18px 0;
}

/* ── HERO CTA BUTTON ── */
.hero-cta-wrap {
  display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--blue);
  border: none; border-radius: 8px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 0.92rem;
  font-weight: 700; color: #fff; letter-spacing: 0.02em;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: #1a73e8; transform: translateY(-2px); }
.btn-primary svg { flex-shrink: 0; }

.btn-wpp-hero {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; background: transparent;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 0.92rem;
  font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.02em;
  text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
}
.btn-wpp-hero:hover {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.45);
  color: #25d366;
}

/* ── WHATSAPP FORM BUTTON ── */
.form-btn-wpp {
  width: 100%; padding: 14px;
  background: #25d366; border: none; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem;
  font-weight: 700; color: #fff; cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.2s; margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-btn-wpp:hover { background: #1ebe5d; }
.form-btn-wpp.is-disabled { cursor: not-allowed; opacity: 0.55; }

/* ── FOOTER ── */
footer {
  background: #060a0f; padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { font-weight: 700; font-size: 0.95rem; color: rgba(255,255,255,0.5); }
.footer-brand strong { color: #fff; }
.footer-meta { font-size: 0.72rem; color: rgba(255,255,255,0.2); text-align: right; line-height: 1.6; }

/* ── MOBILE OVERRIDES ── */
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(2.25rem, 9vw, 3.2rem) }
  .hero-sub { font-size: 1.05rem; line-height: 1.8 }
  .stat-item { padding: 28px 20px }
  .stat-num { font-size: 2.8rem }
  .stat-label { font-size: 0.9rem }
  .stat-ctx { font-size: 0.84rem }
  .pilar-tab { padding: 20px 14px }
  .pilar-tab-name { font-size: 0.78rem }
  .result-card { padding: 20px 18px }
  .case-anchor { padding: 28px 20px }
  .form-card { padding: 28px 20px }
  .form-field input, .form-field textarea, .form-field select { font-size: 1rem; padding: 14px 16px }
  .form-btn, .form-btn-wpp { font-size: 1rem; padding: 16px }
  .lideranca-item { padding: 18px 12px }
  .li-period { font-size: 1rem }
  .li-role { font-size: 0.82rem }
  .quote-block p { font-size: 1.1rem }
}

/* ── HERO FULL-BLEED MOBILE ── */
@media (max-width: 900px) {
  .hero { min-height: 100svh; position: relative; }
  .hero-visual {
    flex-direction: column;
    position: relative;
    flex: 1;
    min-height: 100svh;
  }
  /* Foto ocupa todo o fundo */
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    z-index: 0;
  }
  /* Gradiente: opaco embaixo (ink), desbota para cima */
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(15,25,35,1) 0%,
      rgba(15,25,35,0.88) 40%,
      rgba(15,25,35,0.4) 75%,
      rgba(15,25,35,0.15) 100%
    );
    z-index: 1;
  }
  /* Conteúdo sobre a foto */
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 24px 56px;
    margin-top: auto;
  }
  .hero-sub { color: rgba(255,255,255,0.75); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .pilares-nav-inner { grid-template-columns: 1fr 1fr; }
  .pilar-intro, .pilar-intro.reverse { grid-template-columns: 1fr; }
  .pilar-intro.reverse .pilar-photo { order: 0; }
  .case-anchor { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
  .lideranca-timeline { grid-template-columns: 1fr 1fr; }
  .form-inner { grid-template-columns: 1fr; gap: 40px; }
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .pilares-nav-inner { grid-template-columns: 1fr 1fr; }
  .lideranca-timeline { grid-template-columns: 1fr 1fr; }
  .container { padding-inline: 16px; }
  .pilares-nav-container { padding-inline: 0; }
  .pilar-tab { min-width: 0; padding: 18px 12px; }
  .pilar-tab-desc { font-size: 0.68rem; }
  .stat-item { padding: 24px 14px; }
  .stat-num { font-size: clamp(2rem, 10vw, 2.8rem); }
  .case-anchor { padding: 24px 18px; }
  .hero-content { padding-inline: 18px; }
  .hero-cta-wrap > * { width: 100%; justify-content: center; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
/* Botão flutuante do WhatsApp */
.whatsapp-floating{position:fixed;right:20px;bottom:20px;z-index:9999;display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:54px;padding:0 20px;color:#fff;background:#25d366;border-radius:999px;box-shadow:0 10px 30px rgba(0,0,0,.28);font-family:"Poppins",Arial,sans-serif;font-size:.9rem;font-weight:700;text-decoration:none;transition:background-color .2s,transform .2s,box-shadow .2s}
.whatsapp-floating:hover{color:#fff;background:#1ebe5d;transform:translateY(-2px);box-shadow:0 14px 34px rgba(37,211,102,.35)}
.whatsapp-floating:focus-visible{outline:3px solid #fff;outline-offset:4px}
.whatsapp-floating svg{flex:0 0 auto}
@media(max-width:600px){.whatsapp-floating{right:16px;bottom:16px;width:54px;min-height:54px;padding:0}.whatsapp-floating span{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}}

/* Informações legais */
.lp-container {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
}
.lp-section-title {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  text-transform: uppercase;
}
.legal-section {
  padding: 96px 0;
  background: var(--bg-soft);
}
.legal-section-heading {
  max-width: 1160px;
  margin-bottom: 44px;
}
.legal-section-intro {
  max-width: 640px;
  color: var(--ink-3);
  font-size: .98rem;
  line-height: 1.75;
}
.legal-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legal-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 25, 35, .1);
  border-radius: 16px;
  background: var(--bg);
  transition: border-color .2s;
}
.legal-panel[open] {
  border-color: rgba(251, 188, 5, .55);
}
.legal-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  list-style: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.legal-panel summary::-webkit-details-marker {
  display: none;
}
.legal-panel summary::marker {
  content: '';
}
.legal-panel-title {
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.legal-panel-title small {
  display: block;
  margin-top: 5px;
  color: var(--ink-3);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.legal-plus {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.legal-plus::before,
.legal-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #b48600;
  content: '';
  transition: transform .25s ease;
}
.legal-plus::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.legal-plus::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.legal-panel[open] .legal-plus::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}
.legal-panel .legal-content {
  max-width: none;
  padding: 24px 30px 30px;
}
.legal-panel .legal-content h2 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.legal-panel .legal-content h2:first-child {
  margin-top: 0;
}
.legal-panel .legal-content h4 {
  margin: 32px 0 10px;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.legal-content p,
.legal-content li {
  color: var(--ink-3);
  font-size: .96rem;
  line-height: 1.8;
}
.legal-content ul {
  padding-left: 22px;
}
.legal-content a {
  color: #1b5fbd;
  font-weight: 600;
}
.legal-contact {
  margin: 18px 0;
  padding: 18px 20px;
  overflow-wrap: anywhere;
  border-left: 4px solid var(--yellow);
  background: var(--line-s);
  color: var(--ink-3);
  font-style: normal;
  line-height: 1.8;
}
.legal-contact strong {
  color: var(--ink);
}
.legal-notice {
  margin: 20px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  background: var(--bg);
  font-weight: 600;
}
@media (max-width: 640px) {
  .lp-container {
    width: min(100% - 40px, 1160px);
  }
  .legal-section {
    padding: 72px 0;
  }
  .legal-panel summary {
    padding: 20px;
  }
  .legal-panel .legal-content {
    padding: 20px 20px 24px;
  }
}
