/* Estilos para a seção de Momentos Históricos */
.momentos {
    padding: 60px 0;
    background-color: #f1f1f1;
}

.momentos h2 {
    color: #031a39;
    font-weight: bold;
    margin-bottom: 50px;
    font-size: 32px;
}

.momentos h2 span {
    color: #81c234;
}

/* Carousel de Momentos */
.momentos-carousel {
    position: relative;
}

.momento-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.momento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.momento-item:hover .momento-image {
    transform: scale(1.05);
}

/* Indicadores abaixo do carousel */
.momentos-indicators-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.momento-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #031a39;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.momento-indicator.active {
    background-color: #81c234;
    transform: scale(1.2);
}

.momento-indicator:hover {
    background-color: rgba(129, 194, 52, 0.7);
    transform: scale(1.1);
}

/* Controles de navegação */
.momentos-carousel .carousel-control-prev,
.momentos-carousel .carousel-control-next {
    width: 8%;
    height: 100%;
    top: 0;
    opacity: 1;
    z-index: 10;
}

.momentos-carousel .carousel-control-prev-icon,
.momentos-carousel .carousel-control-next-icon {
    background-color: #0c2340;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background-size: 10px;
    transition: all 0.3s ease;
}

.momentos-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.momentos-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #81c234;
    transform: scale(1.1);
}

.momentos-carousel .carousel-control-prev:focus,
.momentos-carousel .carousel-control-next:focus {
    opacity: 1;
}

/* Posicionamento específico dos controles */
.momentos-carousel .carousel-control-prev {
    left: -50px;
}

.momentos-carousel .carousel-control-next {
    right: -50px;
}

/* Paginação */
.paginacao {
    margin-top: 50px;
}

.pagination {
    justify-content: center;
}

.page-item.active .page-link {
    background-color: #81c234;
    border-color: #81c234;
}

.page-link {
    color: 81c234;
    background-color: transparent;
    border-color: #81c234;
}

.page-link:hover {
    color: white;
    background-color: #81c234;
    border-color: #81c234;
}