@import url('https://fonts.googleapis.com/css2?family=Itim&family=Montserrat:ital@0;1&display=swap');

.adocoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 40px 20px;
    margin-top: 24px;
}

.pet-card {
    font-size: 15px;
    color: #7d2122;
}

.pet-card h3{
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

.pet-card p{
  font-family: "Itim", cursive;
  font-weight: 400;
  font-style: normal;
}

.pet-img {
    width: 250px;
    height: 250px;
    margin-top: 30px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #c44;
}

.pet-info {
    background: #f1e4e3;
    padding: 25px;
    border-radius: 10px;
    margin-top: 24px;
    text-align: left;
}

.pet-button{
    margin-top: 20px;
    display: block;
    text-align: center;
    padding: 10px;
    color: #f5f5f5;
    background: #7d2122;
    text-decoration: none;
    border-radius: 8px;
}

.pagination {
    margin-top: 42px;
    text-align: center;
}

.pagination a {
    background: #fff;
    border: 2px solid #b30000;
    color: #b30000;
    width: 45px;
    height: 45px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.5s;
    display: inline-block;
    line-height: 42px;
    text-decoration: none;
}

.pagination a:hover {
    background: #b30000;
    color: #fff;
}

.pagination .active {
    background: #b30000;
    color: white;
}
