iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Mantiene la relación de aspecto */
}

/* Ajuste específico para pantallas menores a 768px */
@media (max-width: 768px) {
  iframe {
    width: 100%;
    height: 300px; /* Puedes ajustar según el contenido */
  }
}

/* Ajuste específico para móviles (menos de 480px) */
@media (max-width: 480px) {
  iframe {
    height: 250px;
  }
}

img {
  padding: 5px;
}

.btn-descargar {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff !important;
  background: #3085ee;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-descargar:hover {
  background-color: #1d4c99;
  color: #fff;
  text-decoration: none;
}

.btn-descargar i {
  margin-right: 8px;
}

.tagsFotos {
  display: flex;
}

.tagsFotos img {
  display: flex;
  width: 25%;
}
