/* ================================
   Estilos para projects.html
================================ */

/* Títulos */
h2, h3 {
  font-weight: 700;
}

h6 {
  margin-top: 1rem;
  font-weight: 600;
}

/* Texto pequeño descriptivo */
section p.small {
  font-size: 0.95rem;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

/* Tarjetas de proyecto */
.project-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* Botón personalizado */
.project-button {
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.project-button:hover {
  transform: scale(1.05);
  background-color: #198754;
  color: white;
}

/* Fondos */
.bg-success {
  background-color: #198754 !important;
}

.bg-light {
  background-color: #f9f9f9 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .project-card img {
    height: 180px;
  }

  h6 {
    font-size: 1rem;
  }
}
