#adopt a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

#adopt {
    margin: 4rem 0px 8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#adopt .adoptHead {
    text-align: center;
    width: 80%;
}

#adopt .adoptList {
    display: flex;
    flex-direction: column;
}

#adopt .adoptList > a {
    margin: 20px;
}

#adopt a {
    color: black;
    transition: all 500ms ease;
}

#adopt a:hover {
    color: #edb507;
}

#adopt a:hover .adoptCard {
    -webkit-box-shadow: 7px 7px 39px -1px rgba(0, 0, 0, 1);
    -moz-box-shadow: 7px 7px 39px -1px rgba(0, 0, 0, 1);
    box-shadow: 7px 7px 39px -1px rgba(0, 0, 0, 1);
}

#adopt .adoptCard {
    padding: 5px 10px 10px 10px;
    text-align: center;
    border-radius: 16px;

    -webkit-box-shadow: 7px 7px 13px -3px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: 7px 7px 13px -3px rgba(0, 0, 0, 0.58);
    box-shadow: 7px 7px 13px -3px rgba(0, 0, 0, 0.58);
}

#adopt .adoptCardImage {
    margin: 20px auto 0px;
    width: 300px;
    height: 200px;
}

#adopt .adoptCardImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

#adopt .adoptCardText {
    margin-top: 10px;
}

#adopt .adoptCardText h5 {
    font-weight: bold;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

#adopt .pagination a {
    color: var(--pink-color);
}

#adopt .pagination a:hover {
    border: none;
    font-size: 1rem;
    color: rgb(235, 34, 101);
}

.pagination ul {
    display: flex;
    flex-direction: row;
}

.pagination ul li {
    padding: 2px 4px;
    border: 0.5px solid var(--pink-color);
}

.pagination ul li:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination ul li:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination ul li a {
    color: var(--pink-color);
}

.pagination ul li a:hover {
    color: rgb(235, 34, 101);
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 858px) {
    .pagination ul {
        position: initial;
        width: initial;
        height: initial;
        background: none;
        top: initial;
        left: initial;
    }
}

@media (min-width: 800px) {
    #adopt .adoptList {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    #adopt .adoptList {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Estilo diferente de cor para o footer  */

.footerDivider {
    background-color: #e9ca6c;
}

.footerBox {
    border-top: 5px solid #e9ca6c;
    color: #5d4538;
}

.footerRightAddress {
    color: #5d4538;
}

.copyright {
    background-color: #e9ca6c;
}

.copyright a {
    color: #5d4538;
}

.copyright a:hover {
    color: black;
}

#myBtn {
    background: #e9ca6c;
}

#myBtn:hover {
    background-color: #dbae26;
}
