      :root {
      --verde-900: #0a5a34;
      --verde-800: #0d6a3a;
      --verde-700: #178742;
      --verde-500: #289345;
      --verde-200: #dbead8;
      --texto: #1e2b24;
      --texto-suave: #44524b;
      --borda: rgba(8, 62, 34, 0.11);
      --sombra: 0 22px 54px rgba(22, 68, 41, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      color: var(--texto);
      background: #fff;
      overflow-x: hidden;
    }

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

    .page-shell {
      position: relative;
      isolation: isolate;
    }

    .container-wide {
      width: min(100% - 32px, 1380px);
      margin: 0 auto;
    }

    .btn-main,
    .btn-secondary-main {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.7rem;
      border-radius: 14px;
      font-weight: 700;
      text-decoration: none;
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
    }

    .btn-main:hover,
    .btn-secondary-main:hover {
      transform: translateY(-1px);
    }

    .btn-main i {
      position: absolute;
      left: 1.25rem;
      top: 50%;
      line-height: 1;
      transform: translateY(-50%);
    }

    .hero {
      position: relative;
      min-height: 720px;
      background-image: url("./assets/banner.png");
      background-position: center center;
      background-size: cover;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 249, 239, 0.96) 0%, rgba(255, 246, 231, 0.82) 28%, rgba(255, 244, 225, 0.35) 50%, rgba(255, 245, 231, 0.04) 66%),
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.52), transparent 26%);
    }

    .hero::after {
      content: "";
      position: absolute;
      left: -4%;
      right: -4%;
      bottom: -2px;
      height: 132px;
      background: #fff;
      clip-path: ellipse(72% 100% at 50% 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      min-height: 720px;
      padding: 56px 0 180px;
    }

    .hero-copy {
      max-width: 560px;
      padding-left: clamp(8px, 3vw, 48px);
    }

    .hero-title {
      margin: 0;
      color: var(--verde-900);
      font-size: clamp(3rem, 5vw, 4.6rem);
      line-height: 0.95;
      font-weight: 800;
      letter-spacing: -0.05em;
    }

    .hero-title .script {
      display: block;
      margin-top: 10px;
      color: #2a9d45;
      font-size: clamp(3rem, 5vw, 4.9rem);
      font-family: "Brush Script MT", "Segoe Script", cursive;
      font-weight: 400;
      letter-spacing: 0;
      transform: rotate(-4deg);
    }

    .hero-copy p {
      margin: 26px 0 0;
      max-width: 520px;
      color: #27342e;
      font-size: 1rem;
      line-height: 1.78;
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
    }

    .btn-main,
    .btn-secondary-main {
      min-height: 58px;
      padding: 0.95rem 1.5rem;
      font-size: 0.95rem;
      box-shadow: 0 14px 24px rgba(10, 90, 52, 0.15);
    }

    .btn-main {
      padding-right: 2.85rem;
      padding-left: 2.85rem;
      background: linear-gradient(180deg, #209149 0%, #0d6d3a 100%);
      color: #fff;
    }

    .btn-main:hover,
    .btn-main:focus {
      color: #fff;
      background: linear-gradient(180deg, #1d8644 0%, #0a5b33 100%);
    }

    .btn-secondary-main {
      color: var(--verde-800);
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(23, 135, 66, 0.34);
    }

    .btn-secondary-main:hover,
    .btn-secondary-main:focus {
      color: var(--verde-900);
      border-color: rgba(23, 135, 66, 0.52);
      background: #fff;
    }

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

    .values-card {
      width: min(100%, 1150px);
      margin: 0 auto;
      padding: 22px 10px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 30px;
      box-shadow: var(--sombra);
      backdrop-filter: blur(12px);
    }

    .value-item {
      padding: 12px 24px 6px;
      min-height: 142px;
      text-align: center;
    }

    .value-item + .value-item {
      border-left: 1px solid rgba(8, 62, 34, 0.11);
    }

    .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;
    }

    .objectives {
      position: relative;
      padding: 26px 0 150px;
      text-align: center;
    }

    .notices {
      position: relative;
      padding: 26px 0 30px;
      text-align: center;
    }    

    .objectives h2, .notices h2 {
      margin: 0;
      color: var(--verde-900);
      font-size: clamp(2rem, 3vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .objectives h2 a, .notices h2 a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: inherit;
      text-decoration: none;
      transition: transform 0.25s ease;
    }

    .objectives h2 a:hover,
    .objectives h2 a:focus,
    .notices h2 a:hover,
    .notices h2 a:focus {
      text-decoration: none;
      transform: translateY(-3px);
    }

    .objectives .lead-text {
      max-width: 830px;
      margin: 10px auto 34px;
      color: #384640;
      font-size: 0.98rem;
      line-height: 1.7;
      font-weight: 500;
    }

    .objective-list {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0;
      align-items: start;
    }

    .articles-list {
      grid-template-columns: repeat(4, minmax(0, 260px));
      justify-content: center;
      gap: 20px;
      margin-top: 24px;
    }

    .articles-list + .objective-list {
      margin-top: 72px;
    }

    .articles-list .objective-item {
      min-height: 236px;
      padding: 0;
      border: 1px solid rgba(8, 62, 34, 0.11);
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(22, 68, 41, 0.08);
      overflow: hidden;
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    }

    .articles-list .objective-item + .objective-item {
      border-left: 1px solid rgba(8, 62, 34, 0.11);
    }

    .articles-list .objective-item:hover,
    .articles-list .objective-item:focus-within {
      transform: translateY(-3px);
      border-color: rgba(23, 135, 66, 0.28);
      box-shadow: 0 18px 42px rgba(22, 68, 41, 0.13);
    }

    .article-link {
      display: flex;
      height: 100%;
      flex-direction: column;
      color: inherit;
      text-decoration: none;
    }

    .article-link:focus {
      outline: 3px solid rgba(23, 135, 66, 0.24);
      outline-offset: 6px;
      border-radius: 12px;
    }

    .article-image {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: contain;
      background: #fff;
    }

    .article-title {
      margin: 0;
      padding: 18px 18px 20px;
      color: var(--verde-900);
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.35;
      text-align: center;
    }

    .objective-item {
      min-height: 154px;
      padding: 8px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .objective-item + .objective-item {
      border-left: 1px solid rgba(8, 62, 34, 0.11);
    }

    @media (max-width: 1199px) {
      .hero-inner {
        padding-bottom: 170px;
      }

      .objective-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 26px;
      }

      .articles-list {
        grid-template-columns: repeat(2, minmax(0, 280px));
      }

      .objective-item:nth-child(4) {
        border-left: 0;
      }
    }

    @media (max-width: 991px) {
      .hero {
        min-height: auto;
        background-position: 72% center;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(255, 248, 236, 0.96) 0%, rgba(255, 247, 234, 0.85) 34%, rgba(255, 243, 223, 0.4) 62%, rgba(255, 245, 232, 0.12) 100%);
      }

      .hero-inner {
        min-height: auto;
        padding: 56px 0 156px;
      }

      .hero-copy {
        max-width: 620px;
        padding-left: 0;
      }

      .values-section {
        margin-top: -72px;
      }

      .values-card {
        padding: 18px 4px;
      }

      .value-item {
        min-height: auto;
        padding: 20px 22px;
      }

      .value-item + .value-item {
        border-left: 0;
      }

      .value-item:nth-child(n + 3) {
        border-top: 1px solid rgba(8, 62, 34, 0.11);
      }

      .value-item:nth-child(2n) {
        border-left: 1px solid rgba(8, 62, 34, 0.11);
      }

      .objective-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .articles-list {
        grid-template-columns: repeat(2, minmax(0, 280px));
      }

      .objective-item + .objective-item {
        border-left: 0;
      }

      .objective-item:nth-child(even) {
        border-left: 1px solid rgba(8, 62, 34, 0.11);
      }

      .objective-item:nth-child(n + 3) {
        border-top: 1px solid rgba(8, 62, 34, 0.11);
        padding-top: 28px;
      }
    }

    @media (max-width: 767px) {
      .container-wide {
        width: min(100% - 24px, 1380px);
      }

      .brand-image {
        width: min(68vw, 280px);
      }

      .hero {
        background-position: 72% center;
      }

      .hero::after {
        height: 92px;
      }

      .hero-title {
        letter-spacing: -0.04em;
      }

      .hero-copy p {
        font-size: 0.96rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn-main,
      .hero-actions .btn-secondary-main {
        width: 100%;
      }

      .values-section {
        margin-top: -48px;
      }

      .value-item:nth-child(2n) {
        border-left: 0;
      }

      .value-item:nth-child(n + 2) {
        border-top: 1px solid rgba(8, 62, 34, 0.11);
      }

      .objective-list {
        grid-template-columns: 1fr;
      }

      .articles-list {
        max-width: 280px;
        grid-template-columns: 1fr;
        margin-right: auto;
        margin-left: auto;
      }

      .articles-list + .objective-list {
        margin-top: 52px;
      }

      .objective-item:nth-child(even) {
        border-left: 0;
      }

      .objective-item:nth-child(n + 2) {
        border-top: 1px solid rgba(8, 62, 34, 0.11);
      }

    }