    :root {
      --verde-principal: #2e7d32;
      --verde-claro: #66bb6a;
      --fundo: #f9f9f9;
      --texto: #333;
      --branco: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Open Sans', sans-serif;
    }

    body {
      background-color: var(--fundo);
      color: var(--texto);
    }

    header {
      background: linear-gradient(135deg,  var(--verde-claro), var(--verde-principal));
      color: var(--branco);
      padding: 2rem 1rem;
      text-align: center;
    }

    header h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .section {
      background-color: var(--branco);
      margin: 1rem auto;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: flex;
      overflow: hidden;
      max-width: 1000px;
      flex-direction: row;
    }

    .section:nth-child(even) {
      flex-direction: row-reverse;
    }

    .section img {
      width: 40%;
      object-fit: cover;
    }

    .section-content {
      padding: 1.5rem;
      width: 60%;
    }

    .section-content h2 {
      color: var(--verde-principal);
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 1rem;
    }

    .section-content p {
      margin-bottom: 1rem;
    }

    .saiba-mais {
      color: var(--verde-principal);
      text-decoration: none;
      font-weight: bold;
    }

    footer {
      background-color: var(--verde-principal);
      color: var(--branco);
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      margin-top: 2rem;
    }

    @media (max-width: 768px) {
      header img{
        display: none;
      }
      .section {
        flex-direction: column !important;
      }

      .section img,
      .section-content {
        width: 100%;
      }

      .section img {
        height: 200px;
      }
    }
    @media (max-width: 1100px){
      header img{
        display: none;
      }
    }
    header{
      position: relative;
    }

    header img{
      width: 10rem;
      position: absolute;
      left: 0;
      top: 23px;
      margin-left: 10px;
    }
 