    body {
      background-color: #f0fdf4; /* verde muy claro */
    }

    .header-medioambiente {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 40px 20px;
      text-align: center;
    }

    .header-medioambiente img {
      width: 60px;
      height: auto;
    }

    .header-medioambiente h1 {
      font-size: 2em;
      color: #2e7d32; /* verde más fuerte */
      margin: 0;
    }

    @media (max-width: 600px) {
      .header-medioambiente {
        flex-direction: column;
      }

      .header-medioambiente img {
        width: 50px;
      }

      .header-medioambiente h1 {
        font-size: 1.5em;
      }
    }

    @media (max-width: 600px) {
  .header-medioambiente {
    flex-direction: column;
  }

  .header-medioambiente img {
    width: 50px;
  }

  .header-medioambiente h1 {
    font-size: 1.5em;
  }
}

.mediotxt {
    margin: 50px 100px 50px 100px;
    font-family: cinzel, serif;
    font-size: xx-large;
    text-align: center;
}
@media (max-width: 768px) {
    .mediotxt {
        margin: 50px 0 50px 0;
    }
}

.imagen-central,
.imagen-contenido,
.imagen-final {
  margin: 30px auto;
  text-align: center;
}

.imagen-central img,
.imagen-contenido img,
.imagen-final img {
  display: block;
  max-width: 100%;
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: none;
  z-index: 1;
  position: relative;
}

.textomedamb {
    margin: 50px 100px 50px 100px;
    font-family: cinzel, serif;
    font-size: x-large;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .textomedamb {
        margin: 20px 20px;
        font-size: large;
    }
}

.imagen-central img,
.imagen-contenido img,
.imagen-final img {
  opacity: 0;
  transform: translateY(30px);
  animation: aparecer 1s ease-out forwards;
}

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
