  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    border-radius: 999px;
    font-family: var(--fonte-texto);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }
  .eyebrow--amarelo { background: var(--amarelo); color: var(--amarelo-escuro); }
  .eyebrow--roxo { background: var(--roxo); color: var(--branco); }
  .eyebrow--verde { background: var(--verde); color: var(--verde-escuro); }
 
  .star { position: absolute; }
 
  /* ============ HERO (branco) ============ */
  .hero-deco {
    position:absolute;
    width: 46px; height:46px;
    animation: float 5s ease-in-out infinite;
  }
  .hero-deco.d1 { top: -6%; left: -8%; color: var(--amarelo); width:52px; height:52px; }
  .hero-deco.d2 { top: 8%; right: -10%; color: var(--vermelho); animation-delay: .8s; }
  .hero-deco.d3 { bottom: 6%; left: -12%; color: var(--roxo); animation-delay: 1.4s; width:38px; height:38px; }
  .hero-deco.d4 { bottom: -8%; right: 6%; color: var(--amarelo); animation-delay: .4s; width:44px; height:44px; }
  .hero-deco.d5 { top: 42%; left: 16%; color: var(--azul); animation-delay: 1.8s; width:34px; height:34px; }

  .hero-bg-doodle { position:absolute; opacity:.35; }
  .hero-bg-doodle.b1 { top: 6%; left: 3%; width:60px; height:60px; color: var(--azul); }
  .hero-bg-doodle.b2 { bottom: 1%; left: 40%; width:44px; height:44px; color: var(--verde); }
  .hero-bg-doodle.b3 { top: 14%; right: 30%; width:36px; height:36px; color: var(--vermelho); }

  .hero {
    position: relative;
    padding: 130px 0 56px;
    background: var(--branco);
    overflow: hidden;
    width: 100%;
  }
  .hero .wrap { position: relative; z-index: 1; }
  .hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  .hero-title {
    font-size: var(--size-titulo);
    color: var(--azul-escuro);
  }
  .hero-title .accent { color: var(--vermelho); }
  .hero-sub {
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
  }
 
  /* ============ CONSELHO E DIRETORIA ============ */
  .conselho { padding: 90px 0 20px; background: var(--branco); }
  .sec-head { text-align: center; margin-bottom: 52px; }
  .sec-head h2 {
    margin-top: 16px;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    color: var(--azul-escuro);
  }
  .sec-head p {
    max-width: 560px;
    margin: 14px auto 0;
    color: #556;
    line-height: 1.6;
  }
 
  .conselho-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
  }
  .conselho-card {
    background: #FFFDF4;
    border: 2px solid #FBE9AE;
    border-radius: 20px;
    padding: 26px 22px;
    text-align: center;
  }
  .conselho-avatar {
    width: 58px; height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--fonte-titulo);
    font-size: 1.2rem;
    color: var(--branco);
  }
  .conselho-cargo {
    font-family: var(--fonte-texto);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--amarelo-escuro);
    margin-bottom: 4px;
  }
  .conselho-nome {
    font-family: var(--fonte-texto);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--texto);
  }
  @media (max-width: 760px) {
    .conselho-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 500px) {
    .conselho-grid { grid-template-columns: 1fr; }
  }


/* ---------------- DOCUMENTAÇÃO ---------------- */

.docs {
  padding: 50px 0 100px;
}

.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.docs .eyebrow {
  margin-bottom: 18px;
}

.docs h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--azul-escuro);
  margin-bottom: 16px;
}

.sec-head p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4a4a4a;
}


/* GRID */

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 40px;
}

@media (max-width: 800px) {
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .docs-grid { grid-template-columns: repeat(1, 1fr); }
}


/* CARD */

.doc-card {
  background: var(--branco);
  border-radius: 14px;
  padding: 30px 26px 28px;
  box-shadow: 0 12px 26px rgba(2, 61, 81, .09);
  position: relative;

  transform: rotate(var(--rot, 0deg));

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.doc-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 18px 34px rgba(2, 61, 81, .16);
}


/* INCLINAÇÕES */

.doc-card:nth-child(6n+1) {
  --rot: -2deg;
}

.doc-card:nth-child(6n+2) {
  --rot: 1.5deg;
}

.doc-card:nth-child(6n+3) {
  --rot: -1deg;
}

.doc-card:nth-child(6n+4) {
  --rot: 2deg;
}

.doc-card:nth-child(6n+5) {
  --rot: -1.5deg;
}

.doc-card:nth-child(6n+6) {
  --rot: 1deg;
}

.doc-card:nth-child(6n+7) {
  --rot: -2deg;
}


/* FITA */

.fita {
  position: absolute;
  top: -12px;
  left: 28px;

  width: 60px;
  height: 22px;

  opacity: .85;

  transform: rotate(-4deg);
}


/* ÍCONE */

.doc-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 18px;
}


/* TÍTULO */

.doc-card h3 {
  font-family: var(--fonte-texto);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--texto);
  margin-bottom: 10px;
}


/* DESCRIÇÃO */

.doc-card p {
  font-size: .95rem;
  line-height: 1.55;
  color: #4d4d4d;
  margin-bottom: 18px;
}


/* LINK */

.doc-link {
  display: inline-block;

  font-size: .88rem;
  font-weight: 800;

  color: var(--azul);
  text-decoration: none;

  transition:
    color .2s ease,
    transform .2s ease;
}

.doc-link:hover {
  color: var(--azul-escuro);
  transform: translateX(3px);
}

  /* ============ CTA FINAL ============ */
  .cta {
    background: var(--azul-escuro);
    border-radius: 32px;
    margin: 0 auto 90px;
    max-width: 1180px;
    padding: 56px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 80%;
  }
  .cta h2 { color: var(--branco); font-size: clamp(1.5rem, 3vw, 2.1rem); }
  .cta p {
    color: #CFEAF3;
    max-width: 480px;
    margin: 14px auto 26px;
    line-height: 1.6;
  }
  .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }






