/* =========================
   SERVICIOS
   ========================= */
.servicios {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.servicios h1 {
  font-size: 2rem;
  color: #e38ca0;
  margin-bottom: 20px;
  text-align: center;
}

.servicios p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: left;
  color: #333;
}

/* Tarjetas de servicio */
.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(227, 140, 160, 0.15);
  padding: 30px 40px;
  margin-bottom: 40px;
}

.service-card h2 {
  font-size: 1.6rem;
  color: #e38ca0;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #e38ca0;
  margin: 15px 0 10px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.service-card ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
  line-height: 1.6;
}

/* Botones */
.service-card .btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
}

.btn-primary {
  background-color: #e38ca0;
  color: #fff;
  margin-bottom: 20px;
}

.btn-secondary {
  background-color: #fff;
  color: #e38ca0;
  border: 2px solid #e38ca0;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-card {
    padding: 25px 30px;
  }
}

@media (max-width: 600px) {
  .service-card {
    padding: 20px;
  }

  .servicios h1 {
    font-size: 1.8rem;
  }

  .service-card h2 {
    font-size: 1.4rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p,
  .service-card ul {
    font-size: 0.95rem;
  }
}
