/* AREA RESERVADA PARA SEÇÃO MOMENTOS */

.img-gallery {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.img-gallery:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* CAROUSEL */

@media (max-width: 600px) {
    .carousel-images, .carousel-images img {
        width: 100%;
        height: 150px;
    }
    main {
        padding: 0 0.5rem;
    }
}

.carousel 
.carousel-inner img,
.carousel-item img,
.img-gallery,
.img-fluid {
  width: 100%;
  height: 500px; /* altura fixa padronizada */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
}

.carousel-images {
    width: 100%;
    max-width: 700px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border: 4px solid #DDD040;
    border-radius: 12px;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    left: 0; top: 0;
    transition: opacity 0.5s;
    border-radius: 8px;
}

.carousel-images img.active {
    display: block;
    opacity: 1;
}

.carousel-btn {
    background: #DD404D;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: #c43a43;
}