.aviso-ficticio {
  background: linear-gradient(135deg, #fff8f0 0%, #f5e6d3 100%);
  border: 2px solid #d4a373;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 1.5rem auto;
  max-width: 600px;
  text-align: center;
  color: #4e2e1f;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.aviso-ficticio .aviso-icon {
  font-size: 2rem;
  color: #f78318;
  margin-bottom: 0.5rem;
}

.aviso-ficticio p {
  margin: 0.3rem 0;
}

.aviso-ficticio p:first-of-type {
  font-size: 1.1rem;
  color: #f78318;
}

.carrusel-imagenes {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.imagen-carrusel {
  flex: 0 0 auto;
  width: 250px;
  height: 250px;
  object-fit: contain;
  background-color: #fff8f0;
  border-radius: 12px;
  transition: transform 0.3s ease;
  scroll-snap-align: center;
}

.imagen-carrusel:hover {
  transform: scale(1.1);
}