/* ===== PROYECTOS ===== */
.project-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 78, 146, 0.4); /* resalta en hover */
}

/* Badges personalizados */
.badge.bg-purple {
  background-color: #9b59b6;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
}

/* Círculo para íconos/logos */
.project-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 78, 146, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: all 0.3s ease;
}

.project-card:hover .icon-circle {
  background: rgba(0, 78, 146, 0.15);
  transform: scale(1.05);
}

/* Íconos dentro */
.project-card i {
  font-size: 2rem;
}

/* Logo Odoo dentro del círculo */
.project-card .icon-circle img {
  max-height: 40px;
  max-width: 70%;
  object-fit: contain;
}

/* Botón Ver Detalles */
.project-card .btn-link {
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-card .btn-link:hover {
  color: #001f54;
  text-decoration: underline;
}
