/* Estilos do carrossel */
.carrousel {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin: 20px auto;
    position: relative;
  }
  .carrousel-box {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .carrousel-box img {
    width: 25%;
    height: auto;
    flex-shrink: 0;
    display: block;
    cursor: pointer;
  }
  
  /* Modal para exibição ampliada da imagem */
  #modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }
  #modalImage {
    max-width: 90%;
    max-height: 90%;
  }
  #closeModal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
  }
  