.galeria-fotos {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px auto;
  width: 75%;
  max-width: 950px;
}

/* CARD HORIZONTAL */
.card-foto {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: var(--fundo-branco-cinzaDark);
  border-radius: 18px;
  box-shadow: 0 4px 10px var(--pretoTransparente-cinzaDark10);
  overflow: hidden;
  max-height: 500px;
}

.card-foto:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px var(--pretoTransparente-cinzaDark10);
}

/* IMAGEM DA REFORMA */
.foto-conteudo {
  flex: 0 0 25%;
  max-width: 350px;
  display: flex;
  height: -webkit-fill-available;
  justify-content: center;
}

.foto-conteudo img {
  object-fit: cover;
  min-width: 150px;
  height: 100%;
}

/* INFORMAÇÕES */
.foto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: -webkit-fill-available;
  padding: 18px 22px;
  color: var(--texto-preto-branco);
}

.foto-detalhes {
  overflow-y: auto;
}

/* USUÁRIO */
.usuario-foto {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.usuario-foto img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fundo-verdeDomus-cinzaDark60);
}

.usuario-foto span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--texto-preto-branco);
}

/* TÍTULO E DESCRIÇÃO */
.foto-detalhes h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--texto-preto-branco);
  margin-bottom: 8px;
}

.foto-detalhes p {
  font-size: 0.95rem;
  line-height: 1.4rem;
  color: var(--texto-preto-branco);
  text-align: justify;
  word-break: break-word;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .card-foto {
    flex-direction: column;
    max-height: none;
  }

  .foto-conteudo {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }

  .foto-info {
    padding: 15px;
  }
}

@media (max-width: 500px) {
  .usuario-foto img {
    width: 38px;
    height: 38px;
  }

  .foto-detalhes h3 {
    font-size: 1rem;
  }

  .foto-detalhes p {
    font-size: 0.9rem;
  }
}
.destacar-card {
  animation: brilhoCard 1.8s ease-out;
}

@keyframes brilhoCard {
  0% {
    box-shadow: 0 0 25px #97C438;
    transform: scale(1.03);
  }
  100% {
    box-shadow: none;
    transform: scale(1);
  }
}
.modal-foto {
  display: none;
  position: fixed;
  z-index: 9999999999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  cursor: zoom-out;
}

.modal-foto img {
  margin: auto;
  display: block;
  max-width: 95vw;
  max-height: 90vh;
  box-shadow: 0 0 15px #000;
  border-radius: 8px;
}

.modal-foto #fecharModalFoto {
  position: fixed;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0px 0px 5px black;
}

.modal-foto #fecharModalFoto:hover {
  color: #ccc;
}
