

/* Sección principal de contenido */
.content-section {
  padding: 40px 0;
  margin-bottom: 30px; /* Espacio debajo de la sección */
}

/* Contenedor de artículos */
.articles-grid {
  display: flex;
  flex-wrap: wrap; 
  gap: 30px;
}

/* Título principal */
.articles-grid h2 {
  width: 100%;
  text-align: center; 
  font-size: 2.5rem; 
  margin-bottom: 20px; 
  color: #00ffc2; 
}

/* Tarjetas individuales de productos */
.product-card {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  padding: 30px; 
  border: 2px solid #00ffc2; 
  border-radius: 10px; 
  background-color: #1a1a1a; 
  min-width: 300px; 
  flex: 1; 
}

/* Efecto cuando pasas el mouse por encima */
.product-card:hover {
  background-color: #2a2a2a; 
  border-color: #ffffff;
}

/* Títulos dentro de las tarjetas */
.product-card h3 {
  margin-bottom: 15px; 
  color: #00ffc2; 
  font-size: 1.5rem; 
}

/* Texto descriptivo */
.product-card p {
  color: #cccccc;
  margin-bottom: 20px; 
  line-height: 1.5; 
  flex-grow: 1; 
}

/* Texto "Más" */
.product-card a {
  padding: 10px 20px; 
  background-color: #00ffc2; 
  color: #000000;
  text-decoration: none;
  border-radius: 5px; 
  font-weight: bold;
  text-transform: uppercase;
}

/* Efecto hover en los enlaces */
.product-card a:hover {
  background-color: #ffffff;
  color: #000000;
}
