/* ══════════════════════════════════════════════════════════════
   JUSMED LAUDOS MÉDICOS - ESTILOS PRINCIPAIS
   ══════════════════════════════════════════════════════════════ */

/* ── VARIÁVEIS CSS ── */
:root {
  --verde: #1c3b2e;
  --verde-m: #2d5949;
  --verde-c: #e7f0ec;
  --vermelho: #c9302c;
  --areia: #e7e7e7;
  --escuro: #000000;
  --medio: #1c3b2e;
  --cinza: #666666;
  --linha: rgba(28, 59, 46, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET E BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--areia);
  color: var(--escuro);
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   NAVEGAÇÃO
   ══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: var(--verde);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color .2s;
}

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

.nav-cta {
  background: #fff;
  color: var(--verde);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.nav-cta:hover {
  background: var(--verde-c);
  color: var(--verde);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 68px 5vw 0;
  gap: 4rem;
}

.hero-left {
  padding-top: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--verde);
  text-transform: uppercase;
  border: 1px solid var(--verde-m);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verde);
  display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--escuro);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--verde);
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--medio);
  margin-bottom: 2.4rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--verde);
  color: #fff;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--verde-m);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1.5px solid var(--verde);
  color: var(--verde);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  background: var(--verde-c);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-bg-shape {
  position: absolute;
  inset: -24px;
  background: #f5f5f5;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  z-index: 0;
}

.hero-main-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 2.8rem;
  box-shadow: 0 8px 40px rgba(28, 59, 46, 0.10);
}

.hero-publicos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.publico-card {
  background: var(--areia);
  border-radius: 14px;
  padding: 1.2rem;
  border: 1.5px solid transparent;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}

.publico-card:hover {
  border-color: var(--verde);
  background: var(--verde-c);
}

.publico-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--verde-c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.publico-card h4 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--escuro);
  margin-bottom: 0.2rem;
}

.publico-card p {
  font-size: 0.9rem;
  color: var(--cinza);
  line-height: 1.6;
}

.hero-divider {
  font-size: 0.75rem;
  color: var(--cinza);
  text-align: center;
  margin-bottom: 1.2rem;
  position: relative;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--linha);
}

.hero-divider::before {
  left: 0;
}

.hero-divider::after {
  right: 0;
}

.hero-tag-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 400;
  background: var(--verde-c);
  color: var(--verde);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--escuro);
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════════════════════════
   SEÇÕES COMPARTILHADAS
   ══════════════════════════════════════════════════════════════ */
section {
  padding: 7rem 5vw;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--escuro);
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--medio);
  max-width: 600px;
  margin-bottom: 3.5rem;
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO PÚBLICOS
   ══════════════════════════════════════════════════════════════ */
.publicos-section {
  background: #fff;
}

.publicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.publico-bloco {
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.publico-bloco:first-child {
  background: var(--escuro);
}

.publico-bloco:last-child {
  background: var(--verde-c);
}

.publico-bloco .pb-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  opacity: 0.08;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
}

.publico-bloco:first-child .pb-num {
  color: #fff;
}

.publico-bloco:last-child .pb-num {
  color: var(--verde);
}

.pb-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.publico-bloco:first-child .pb-label {
  color: var(--vermelho);
}

.publico-bloco:last-child .pb-label {
  color: var(--vermelho);
}

.pb-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.publico-bloco:first-child .pb-title {
  color: #fff;
}

.publico-bloco:last-child .pb-title {
  color: var(--escuro);
}

.pb-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.publico-bloco:first-child .pb-desc {
  color: rgba(255, 255, 255, 0.65);
}

.publico-bloco:last-child .pb-desc {
  color: var(--medio);
}

.pb-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pb-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  line-height: 1.7;
}

.publico-bloco:first-child .pb-list li {
  color: rgba(255, 255, 255, 0.8);
}

.publico-bloco:last-child .pb-list li {
  color: var(--medio);
}

.pb-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.publico-bloco:first-child .pb-list li::before {
  background: var(--verde-m);
}

.publico-bloco:last-child .pb-list li::before {
  background: var(--verde);
}

.btn-branco {
  background: #fff;
  color: var(--escuro);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-branco:hover {
  background: var(--areia);
}

.btn-verde-solido {
  background: var(--verde);
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-verde-solido:hover {
  background: var(--verde-m);
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO COMO FUNCIONA
   ══════════════════════════════════════════════════════════════ */
.como-section {
  background: var(--areia);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--linha);
  position: relative;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde);
  flex-shrink: 0;
  background: #fff;
}

.step-content h4 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--escuro);
  margin-bottom: 0.3rem;
  margin-top: 0.7rem;
}

.step-content p {
  font-size: 1.05rem;
  color: var(--cinza);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO FINALIDADES
   ══════════════════════════════════════════════════════════════ */
.finalidades-section {
  background: #fff;
}

.fins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.fim-card {
  padding: 2.4rem 2rem;
  background: var(--areia);
  transition: background .2s;
}

.fim-card:hover {
  background: var(--verde-c);
}

.fim-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--verde-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  transition: background .2s;
}

.fim-card:hover .fim-icon {
  background: #fff;
}

.fim-card h4 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--escuro);
  margin-bottom: 0.5rem;
}

.fim-card p {
  font-size: 1rem;
  color: var(--cinza);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO EQUIPE
   ══════════════════════════════════════════════════════════════ */
.equipe-section {
  background: var(--escuro);
}

.equipe-section .section-title {
  color: #fff;
  max-width: none;
}

.equipe-section .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.membro {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: background .2s, border-color .2s;
}

.membro:hover {
  background: rgba(28, 59, 46, 0.12);
  border-color: rgba(28, 59, 46, 0.3);
}

.membro-foto {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.membro-foto img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.membro-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .2s;
}

.membro-link:hover {
  transform: translateY(-4px);
}

.membro-link h4,
.membro-link .cargo,
.membro-link p {
  color: inherit;
}

.membro h4 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.2rem;
}

.membro .cargo {
  font-size: 0.95rem;
  color: var(--verde-m);
  margin-bottom: 0.8rem;
}

.membro p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO DEPOIMENTOS
   ══════════════════════════════════════════════════════════════ */
.depo-section {
  background: var(--areia);
}

.depo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.depo-card {
  background: var(--verde);
  border-radius: 20px;
  padding: 2.4rem;
  border: 1px solid var(--verde);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow .2s, transform .2s;
}

.depo-card:hover {
  box-shadow: 0 8px 32px rgba(28, 59, 46, 0.18);
  transform: translateY(-2px);
}

.depo-texto {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
  margin-bottom: 1.5rem;
}

.depo-autor {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.depo-nome {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.depo-cargo {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-section {
  background: #fff;
}

.faq-wrap {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--linha);
  padding: 1.6rem 0;
  cursor: pointer;
}

.faq-pergunta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--escuro);
}

.faq-pergunta .chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--linha);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--verde);
  font-size: 0.85rem;
  transition: transform .2s, background .2s;
}

.faq-item.aberto .chevron {
  transform: rotate(180deg);
  background: var(--verde-c);
}

.faq-resposta {
  font-size: 1.05rem;
  color: var(--cinza);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .2s;
}

.faq-item.aberto .faq-resposta {
  max-height: 250px;
  padding-top: 0.8rem;
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO CTA FINAL
   ══════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--verde);
  text-align: center;
  padding: 7rem 5vw;
}

.cta-section .section-title {
  color: #fff;
  max-width: none;
  margin: 0 auto 1rem;
}

.cta-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
  background: var(--escuro);
  padding: 4rem 5vw 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.footer-logo span {
  color: var(--verde-m);
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  max-width: 240px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--verde-m);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════════════════════════════════════
   ANIMAÇÕES
   ══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}

.d1 {
  animation-delay: .1s;
}

.d2 {
  animation-delay: .22s;
}

.d3 {
  animation-delay: .34s;
}

.d4 {
  animation-delay: .46s;
}

.d5 {
  animation-delay: .58s;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVIDADE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Ajusta o padding das seções para compensar o cabeçalho fixo */
  section {
    padding: 4.5rem 5vw;
  }

  section:first-of-type {
    scroll-margin-top: 68px;
  }

  .publico-bloco {
    padding: 2.5rem;
  }

  /* Mantém o cabeçalho fixo no mobile */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }

  /* Hero otimizado para mobile */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }

  .hero-left {
    padding-top: 0;
  }

  .hero-right {
    padding-top: 0;
  }

  /* Ajusta tamanhos dos elementos hero no mobile */
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.2rem;
  }

  .hero h1 {
    margin-bottom: 1.2rem;
  }

  .hero-sub {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-card-wrap {
    max-width: 100%;
  }

  .hero-main-card {
    padding: 2rem;
  }

  .hero-publicos {
    gap: 0.8rem;
  }

  .publico-card {
    padding: 1rem;
  }

  .publico-card h4 {
    font-size: 0.95rem;
  }

  .publico-card p {
    font-size: 0.85rem;
  }

  .hero-tag-row {
    flex-wrap: wrap;
  }

  .tag {
    font-size: 0.68rem;
  }

  .hero-stat-row {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

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

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

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: -100%;
    width: 100%;
    background: var(--verde);
    padding: 2rem 5vw;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: left 0.3s ease;
    gap: 1.5rem;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 5vw;
  }

  .publico-bloco {
    padding: 1.8rem;
  }

  /* Hero ajustado para telas pequenas */
  .hero {
    padding-top: 78px;
    padding-bottom: 2.5rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-stat-row {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .hero-main-card {
    padding: 1.5rem;
  }

  .hero-publicos {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}