.carousel-container-eventos-noticias {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
  }

  .carousel-eventos-noticias {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .card-eventos-noticias {
    background: #173447;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    flex: 0 0 31.33%;
    /* 33.33% */
    /* exatamente 3 por vez */
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    /* height: 275px; */
  }

  .card-eventos-noticias-body {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* padding */
    padding-left: 10px;
    /* 20px; */
    gap: 15px;
  }

  .card-eventos-noticias-content {
    flex: 1;
    text-align: left;
  }

  .card-eventos-noticias h3 {
    font-size: 17px;
    /* 19px */
    /* 20px */
    margin-bottom: 10px;
    color: #ff9c33;
    margin-top: 17px;
    font-weight: 700;
  }

  .card-eventos-noticias p {
    font-size: 12px;
    /* 14px */
    /* line-height: 1.5; */
    text-align: justify;
    color: #ddd;
  }

  .card-eventos-noticias-content-img {
    position: relative;
    bottom: 5px;
    left: 18px;
    width: 178px;
    height: 220px;
  }

  .card-eventos-noticias img {
    /* width: 140px;
      height: 160px;
      object-fit: cover;
      border-top-left-radius: 40px;
      border-bottom-right-radius: 40px; */
    width: 100%;
    /* 140px */
    height: 100%;
    /* 160px */
    object-fit: cover;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border: 5px solid #adabab;
  }

  .card-eventos-noticias-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #ff9c33; */
    /* padding: 12px 20px; */
    font-weight: 600;
    color: #fff;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .card-eventos-noticias-footer span {
    width: 55%;
  }

  .indicators-eventos-noticias {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
  }

  .dot-eventos-noticias {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dot-eventos-noticias.active {
    background: #173447;
  }

  @media (max-width: 900px) {
    .card-eventos-noticias {
      flex: 0 0 100%;
      margin: 0 0;
      /* mobile: apenas 1 por vez */
    }

    .card-eventos-noticias-body{
          height: 100%;
    }
  }
