:root {
  --primary-color: var(--bs-primary);
  --secondary-color: var(--bs-secondary);
  --accent-color: #ff6b6b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  /*background: linear-gradient(135deg, #e02b20 0%, #b91c1c 50%, #dc2626 100%);*/
  min-height: 100vh;
  /*padding: 2rem 0;*/
}

.services-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: 0.1;
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon::after {
  transform: scale(1.4);
}

.service-icon i {
  font-size: 2rem;
  color: white;
  z-index: 1;
  position: relative;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  text-align: center;
  line-height: 1.4;
}

.service-description {
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
  font-size: 0.95rem;
}

.highlight-word {
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
}

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

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 1.5rem;
  }
}

/* Animaciones sutiles */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

