
html {
    scroll-behavior: smooth;
}

.titulo-encontre {
    padding: 25px;
    text-align: center;
}

.info .tipo-do-animal {
    font-weight: bold;
}

.campo-pesquisar {
    padding: 28px;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;

}

.borda-caixa {
    border: #552814 1px solid;
    width: 123px;
    height: 41px;
    border-radius: 8px;
    padding: 12px;
}

.conteudo-card {
    gap: 15px;
    /* espaço entre eles */
    align-items: flex-start;

}

.animais {
    padding: 0 30px 0 30px;
    flex-direction: column;
    align-items: stretch;
}

.card-animal {
    flex: 1;
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid #552814;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    /* espaço entre cards */
    align-items: flex-start;
}

.imagem-animal {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;

}

.info {
    width: 100%;
}

.info p {
    margin: 3px 0;
    font-size: 14px;
}

.descricao {
    margin-top: 10px;
    font-size: 14px;
}

.botao-adotado {
    margin-top: 10px;
    background-color: #B54124;
    text-align: center;
    font-size: 16px;

}

.centralizar-conteudo {
    justify-content: center;

}

.bnt-adotado {
    display: flex;
    text-align: center;
    justify-content: space-around;
}


.subtitulo-footer {
    margin-bottom: 7px;
    font-size: 15px;
}

#mensagem-vazia {
    text-align: center;
    font-size: 20px;
}

/* mensagem de confirmação */
.modal {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    justify-content: center;
    align-items: center;
}

.caixa-modal {
    background: white;

    padding: 30px;

    border-radius: 15px;

    text-align: center;

    width: 300px;
}

.botoes-modal {
    margin-top: 20px;

    display: flex;

    gap: 10px;

    justify-content: center;
}

.cancelar {
    background: gray;
}

/* botao voltar ao topo */
.voltar-topo {
    position: fixed;

    bottom: 60px;

    right: 20px;

    background-color: #b85c38;

    color: white;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    text-decoration: none;

    font-size: 25px;

    transition: 0.3s;

    z-index: 999;
    opacity: 0.8;
}

.voltar-topo:hover {
    background-color: #94492c;

    transform: scale(1.1);
}


/* gif animais */
.sem-animais {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    margin-top: 40px;

    text-align: center;
}

.gif-cachorro {
    width: 220px;

    max-width: 100%;
}

.sem-animais p {
    font-size: 20px;
    color: #6b2d0c;
    font-weight: bold;
    margin-top: 20px;
}

#mensagem-erro {
    text-align: center;
    color: #c0392b;
    font-weight: bold;
    margin-top: 15px;
    font-size: 18px;
}