/* Autoajuste para imágenes */
img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

section.content2 {
  padding: 40px 15px;
  background: linear-gradient(135deg, #f9f9f9 0%, #eaeaea 100%);
}

.item {
  margin-bottom: 30px;
}

.item-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2b3e50;
}

.item-text {
  font-size: 1rem;
  color: #7a8b94;
}

.item .btn-more {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: white;
  background-color: #3498db;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.item .btn-more:hover {
  background-color: #1d6fa5;
}

.item-content {
  text-align: center;
  margin-top: 10px;
}

.item-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
}

.item-text {
  font-size: 1rem;
  color: #7f8c8d;
}