
      /* ------------------------ RESET SIMPLES ------------------------ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #222;
      background-color: #f7f7f7;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ------------------------ CORES PRINCIPAIS ------------------------ */
    :root {
      --verde: #2e7d32;
      --amarelo: #fbc02d;
      --azul: #1565c0;
      --vermelho: #c62828;
      --preto: #111111;
      --cinza-claro: #f1f1f1;
      --branco: #ffffff;
    }

    /* ------------------------ LAYOUT BÁSICO ------------------------ */
    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 16px;
    }

    section {
      padding: 56px 0;
    }

    h1, h2, h3 {
      font-weight: 700;
      color: var(--preto);
      margin-bottom: 16px;
    }

    p {
      margin-bottom: 12px;
    }

    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      border: none;
      text-align: center;
      transition: background 0.2s ease, transform 0.1s ease;
    }

    .btn-primary {
      background-color: var(--azul);
      color: var(--branco);
    }

    .btn-primary:hover {
      background-color: #0f4a86;
      transform: translateY(-1px);
    }

    .btn-secondary {
      background-color: var(--verde);
      color: var(--branco);
    }

    .btn-secondary:hover {
      background-color: #215925;
      transform: translateY(-1px);
    }

    /* ------------------------ CABEÇALHO ------------------------ */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: var(--branco);
      box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .logo-box {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-box img {
      height: 52px;
      width: auto;
    }

    .logo-text {
      font-weight: 700;
      font-size: 1rem;
      color: var(--preto);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      font-size: 0.95rem;
      font-weight: 500;
    }

    nav a {
      padding: 4px 0;
      border-bottom: 2px solid transparent;
    }

    nav a:hover {
      border-bottom: 2px solid var(--azul);
    }

    /* Menu mobile */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 22px;
      height: 2px;
      background-color: var(--preto);
    }

    .nav-links {
      display: flex;
    }

    /* ------------------------ HERO (DESTAQUE INICIAL) ------------------------ */
    .hero {
      background: linear-gradient(
        135deg,
        #e3f2fd,
        #f9fbe7
      );
      padding: 48px 0 56px 0;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 32px;
      align-items: center;
    }

    .hero-logo {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-logo img {
     max-width: 150px;   /* define largura máxima */
     height: auto;       /* mantém proporção */
    }


    .hero-text h1 {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .hero-text p {
      margin-bottom: 18px;
      font-size: 0.98rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    /* ------------------------ SEÇÃO QUEM SOMOS ------------------------ */
    .section-title {
      text-align: center;
      margin-bottom: 32px;
    }

    .section-title span {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--azul);
      margin-bottom: 4px;
    }

    .section-title h2 {
      font-size: 1.6rem;
    }

    .quem-somos-text {
      max-width: 800px;
      margin: 0 auto;
      text-align: justify;
      background-color: var(--branco);
      padding: 24px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }

    /* ------------------------ NOSSAS INICIATIVAS ------------------------ */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .card {
      background-color: var(--branco);
      border-radius: 8px;
      padding: 16px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
      border-top: 4px solid var(--azul);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .card p {
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    .card:nth-child(1) { border-top-color: var(--azul); }
    .card:nth-child(2) { border-top-color: var(--verde); }
    .card:nth-child(3) { border-top-color: var(--amarelo); }
    .card:nth-child(4) { border-top-color: var(--vermelho); }

    /* ------------------------ IMPACTO ------------------------ */
    .impacto {
      background-color: var(--cinza-claro);
    }

    .impacto-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      text-align: center;
    }

    .impacto-item {
      background-color: var(--branco);
      border-radius: 8px;
      padding: 18px 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }

    .impacto-numero {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--azul);
      margin-bottom: 4px;
    }

    .impacto-label {
      font-size: 0.85rem;
      color: #555;
    }

    /* ------------------------ DEPOIMENTOS ------------------------ */
    .depoimentos-list {
      max-width: 800px;
      margin: 0 auto;
      display: grid;
      gap: 16px;
    }

    .depoimento {
      background-color: var(--branco);
      padding: 18px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
      border-left: 4px solid var(--verde);
      font-size: 0.95rem;
    }

    .depoimento strong {
      display: block;
      margin-top: 8px;
      font-size: 0.85rem;
      color: #555;
    }

    /* ------------------------ CHAMADA PARA AÇÃO ------------------------ */
    .cta {
      background: linear-gradient(
        135deg,
        var(--azul),
        var(--verde)
      );
      color: var(--branco);
      text-align: center;
    }

    .cta .container {
      max-width: 700px;
    }

    .cta h2 {
      color: var(--branco);
      margin-bottom: 12px;
    }

    .cta p {
      margin-bottom: 18px;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn-outline {
      border: 1px solid var(--branco);
      color: var(--branco);
      background: transparent;
    }

    .btn-outline:hover {
      background-color: rgba(255,255,255,0.12);
    }

    .cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;       /* espaço entre os botões */
  flex-wrap: nowrap; /* não quebra em desktop */
}

/* Responsivo para celular */
@media (max-width: 600px) {
  .cta-actions {
    flex-direction: column;  /* empilha os botões */
    align-items: center;
  }

  .cta-actions a {
    width: 100%;             /* ocupa toda a largura */
    max-width: 300px;        /* limite para não ficar exagerado */
  }
}
