.page-title {
    color: #cd6129;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #cd6129, #5c8c64);
    border-radius: 2px;
}

.btn-marrom-ferrugem {
    background-color: rgb(129, 82, 67);
    border-color: #7b4f3f;
    color: white;
    font-weight: bold;
    transition: all 0.2s ease;
    border-radius: 0.48rem;
}

.btn-filtrar {
    border-radius: 18px;
}

.btn-marrom-ferrugem:hover {
    background-color: rgb(109, 62, 47);
    border-color: #5c3526;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary {
    border-color:rgba(58, 93, 64, 0.67);
    color: #5c8c64;
    border-radius: 18px;    
    transition: all 0.2s ease;
}

.btn-outline-secondary:hover {
    background-color: #5c8c64;
    border-color: rgba(58, 93, 64, 0.67);
    color: white;
}

.card {
   /* border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Static card styles */
.static-card {
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    transform: none !important;
}

.static-card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: none !important;
}

/* News card button hover effect */
.card:not(.static-card) .btn-marrom-ferrugem {
    background-color: rgb(129, 82, 67);
    border-color: #7b4f3f;
    color: white;
    font-weight: bold;
    transition: all 0.2s ease;
}

.card:not(.static-card) .btn-marrom-ferrugem:hover {
    background-color: rgb(109, 62, 47);
    border-color: #5c3526;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    object-fit: cover;
}

/* Pagination styles */
.pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.pagination li {
    display: inline-block;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #5c8c64;
    background-color: #fff;
    border: 1px solid #cbcfd2;
    text-decoration: none;
    min-width: 2.5rem;
    text-align: center;
    border-radius: 0.71rem;
}

.pagination .page-numbers.current {
    background-color: #5c8c64;
    border-color: rgba(58, 93, 64, 0.67);
    color: white;
}

.pagination .page-numbers:hover {
    background-color: #e9ecef;
    color: #5c8c64;
}