@charset "UTF-8";
/* =========================
   RESET
========================= */
html,
body {
  margin: 0;
  padding: 0;
}

/* =========================
   IMAGENS
========================= */
.img-fluid {
  width: 100%;
  height: auto;
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   BANNER
========================= */
.img-banner-adote {
  width: 100%;
  height: auto;
}

/* =========================
   SEÇÃO
========================= */
#pag-adote {
  padding: 2rem 0;
  background: #fff;
}

/* =========================
   FILTRO
========================= */
.filtro-pets {
  border: 1px solid #e5e5e5;
  border-radius: 0.25rem;
  background: #fff;
  overflow: hidden;
  width: 100%;
}

/* Limitar largura só no desktop */
@media (min-width: 992px) {
  .filtro-pets {
    max-width: 320px;
  }
}
.filtro-titulo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #0f5f8f;
  color: #fff;
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.filtro-titulo i {
  font-size: 1.1rem;
}

.filtro-grupo {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 0.75rem 1rem;
}
.filtro-grupo:last-of-type {
  border-bottom: none;
}
.filtro-grupo legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.filtro-grupo label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #333;
  cursor: pointer;
  margin-bottom: 0.35rem;
}

.filtro-checkbox,
.filtro-radio {
  accent-color: #0f5f8f;
}

#limpar-filtros {
  width: calc(100% - 2rem);
  margin: 1rem;
  font-size: 0.85rem;
}

/* =========================
   CARD / FLAYER
========================= */
.flayer-animal {
  position: relative;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

/* =========================
   COMPARTILHAR
========================= */
/* MENU SHARE – ANIMAÇÃO */
.share-menu {
  position: absolute;
  top: 48px;
  right: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  gap: 6px;
  z-index: 20;
  /* estado fechado */
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* estado aberto */
.share-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.share-menu button {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}

.share-menu .bi-instagram {
  color: #e1306c;
}

.share-menu .bi-whatsapp {
  color: #25d366;
}

.share-menu .bi-facebook {
  color: #1877f2;
}

/* =========================
   GRID DE CARDS
========================= */
.grid-pets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .img-banner-adote {
    height: 40vh;
    object-fit: cover;
  }
}

/*# sourceMappingURL=PetAdote.css.map */
