    /* Estilo do carrossel */
    .quem-somos {
      margin: 40px auto;
      text-align: center;
    }
    
    .quem-somos h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .quem-somos p {
      font-size: 16px;
      color: #333;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .quem-somos .btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #416C26;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    .quem-somos .btn:hover {
      background-color: #497a2a;
    }
    .carrossel {
        width: 90%;
        max-width: 800px;
        margin: auto;
        overflow: hidden;
        max-height: 300px;
      }
  
      .carrossel img {
        width: 100%;
        object-fit: cover; /* Ajuste do tamanho da imagem */
        transition: transform 0.5s ease-in-out;
      }
  
      /* Container das imagens */
      .carrossel .slides {
        display: flex;
        transition: transform 0.5s ease;
      }
  
      .slide {
        min-width: 100%;
        height: 300px; /* Altura do carrossel */
        position: relative;
      }
  
      /* Estilo para o título da notícia */
      .titulo {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 10px;
        font-size: 12px;
        font-weight: bold;
        border-radius: 5px;
      }
  
      /* Botões de navegação */
      .prev, .next {
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 1;
      }
  
      .prev {
                width: auto;
        height: auto;
        left: 10px;
      }
  
      .next {
                width: auto;
        height: auto;
        right: 10px;
      }

      .carrossel-dots {

        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
      }
  
      .carrossel-dots .dot {
        height: 10px;
        width: 10px;
        margin: 0 5px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.5);
        transition: background-color 0.3s ease;
      }
  
      .carrossel-dots .active {
        background-color: white;
      }
 