/* Sección de Redes Sociales */
.social-media-section {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.social-media-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.card {
  background-color: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 2.5rem;
  color: #2a7ae4;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background-color: #a78168;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.card-link:hover {
  background-color: #e2cdc1;
  color: brown;
}