/*CARROCEL*/
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.mySlides img{
    width: 100%;
    max-height: 550px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.active{
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*CARROCEL*/
/*VITRINE*/

.pets-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 54px;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 42px;
}

.pet-cardH {
    text-align: center;
}

.pet-cardH a{
    text-decoration: none;
}

.pet-cardH img {
    width: 200px;
    height: 200px;
    border-radius: 50%;           
    border: 4px solid #8A1E1E;   
    object-fit: cover;            
    display: block;
    margin: 0 auto;
}
.pets-container p {
    text-align: center;
    margin-top: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #995151;
}

/*VITRINE*/
/*FORMAS DE AJUDAR*/

.ajuda_container{
    margin: 48px auto 0;
    padding: 42px;
    font-family: Arial, sans-serif;
    background: #f7d9d9;
    text-align: center;
    border-radius: 24px;
}

.ajuda_container h2{
    color: #811D20;
    font-weight: 700;
    margin-bottom: 24px;
}

.ajuda_container p.subtitulo{
    font-size: 18px;
    font-weight: 700;
    color: #995151;
    line-height: 24px;
}

.ajuda_lista{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 0;
}

.ajuda_lista li{
    max-width: 30%;
    min-width: 260px;
    background-color: white;
    border-radius: 32px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ajuda_lista h2{
    margin-top: 12px;
    margin-bottom: 0;
    color: #811D20;
    font-weight: 600;
    font-size: 20px;
}
.ajuda_lista p{
    margin-block: 16px;
}
.ajuda_lista a{
    text-decoration: none;
    color: white;
    background-color: #7a1b1b;
    padding: 12px;
    border-radius: 24px;
    margin-top: 12px;
    margin-top: auto;
}

.btn-ver-mais {
    background-color: #8b1e1e;
    color: #fff;
    margin-top: 30px;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 22px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-ver-mais:hover {
    background-color: #a62a2a;
}