.services-section {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}
.services-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.services-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service-card {
  background-color: #E9EEF3;
  padding: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  background-color: #dce4eb;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  color: #2C3E70;
}
.service-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Modal flotante */
.service-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.service-modal.hidden {
  display: none;
}
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  text-align: left;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
#whatsapp-link {
  margin-top: 1rem;
  display: inline-block;
}

