      :root {
        --verde-900: #0a5a34;
        --verde-800: #0d6a3a;
        --verde-700: #178742;
        --verde-500: #289345;
        --verde-100: #edf6ee;
        --texto: #1e2b24;
        --texto-suave: #53635b;
        --borda: rgba(9, 67, 38, 0.12);
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: "Segoe UI", Arial, sans-serif;
        color: var(--texto);
        background: radial-gradient(circle at top left, rgba(40, 147, 69, 0.12), transparent 30%),
          linear-gradient(180deg, #fcf9f2 0%, #ffffff 34%);
        overflow-x: hidden;
      }

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

      .page-shell {
        position: relative;
        isolation: isolate;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

      .page-shell>site-footer {
        margin-top: auto;
        flex-shrink: 0;
      }

      h1 {
        margin: 0;
        color: var(--verde-900);
        font-size: clamp(2.5rem, 6vw, 4.2rem);
        line-height: 1;
        font-weight: 800;
      }

      .section {
        flex: 1;
        padding: 152px 0 154px;
      }

      /* Valores institucionais */

      .values-section {
        position: relative;
        margin-top: -92px;
        z-index: 2;
      }

      .values-card {
        width: min(90%, 1600px);
        margin: 0 auto;
        padding: 22px 10px;
        box-shadow: var(--sombra);
        backdrop-filter: blur(12px);
      }

      .value-icon,
      .objective-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--verde-700);
        font-size: 2.45rem;
        line-height: 1;
      }

      .value-link {
        display: block;
        height: 100%;
        color: inherit;
        text-decoration: none;
        transition: transform 0.25s ease;
      }

      .value-link .value-icon,
      .value-link h2,
      .value-link p {
        transition: color 0.25s ease, transform 0.25s ease;
      }

      .value-link:hover,
      .value-link:focus {
        transform: translateY(-2px);
      }

      .value-link:hover .value-icon,
      .value-link:focus .value-icon,
      .value-link:hover h2,
      .value-link:focus h2 {
        color: var(--verde-900);
      }

      .value-link:hover p,
      .value-link:focus p {
        color: #263b34;
      }

      .value-item h2,
      .value-item h3,
      .objective-item h3 {
        margin: 18px 0 10px;
        color: var(--verde-900);
        font-size: 1rem;
        font-weight: 700;
      }

      .value-item p,
      .objective-item p {
        margin: 0;
        color: #33413b;
        font-size: 0.92rem;
        line-height: 1.65;
        font-weight: 500;
      }