.services-section {
  padding: 4rem 6rem;
  background-color: #1f1f2e;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #f8c7d8;
  font-family: 'Quicksand', sans-serif;
  text-shadow: 0 0 8px #f8c7d8;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-card {
  background: #2b2b3f;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(248, 199, 216, 0.4);
  max-width: 320px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(248, 199, 216, 0.7);
}

.service-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.service-info {
  padding: 1.5rem 1.8rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f8c7d8;
}

.service-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: #ff82a9;
  text-shadow: 0 0 5px #ff82a9;
}

.service-info p {
  flex-grow: 1;
  font-size: 1rem;
  color: #ffc9d8;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.service-footer {
  text-align: center;
}

.btn-primary.small-btn {
  background-color: #ff82a9;
  color: #1f1f2e;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary.small-btn:hover {
  background-color: #f4557a;
  color: white;
}

/* 📱 Responsividad */
@media (max-width: 1024px) {
  .services-section {
    padding: 3rem 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .service-card {
    max-width: 45%; /* 2 columnas */
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 2.5rem 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    max-width: 100%; /* 1 columna */
  }

  .service-info h3 {
    font-size: 1.4rem;
  }

  .service-info p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-info h3 {
    font-size: 1.2rem;
  }

  .service-info p {
    font-size: 0.9rem;
  }

  .btn-primary.small-btn {
    width: 100%;
    padding: 0.7rem 1rem;
  }
}
