/* --- SECCIÓN SERVICIOS --- */
.servicios {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg), #f8f8f8);
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--fg);
  }
  
  .section-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
  }
  
  /* GRID */
  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .servicio-card {
    background: var(--card);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .servicio-card img {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    object-fit: cover;
  }
  
  .servicio-card h3 {
    font-size: 1.25rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
  }
  
  .servicio-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
  }
  
  /* BOTÓN */
  .btn-outline {
    border: 1px solid var(--gold);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background: var(--gold);
    color: #fff;
  }
  
  /* --- RESPONSIVE --- */
  @media (max-width: 900px) {
    .servicios-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .servicios-grid {
      grid-template-columns: 1fr;
    }
    .section-title {
      font-size: 1.6rem;
    }
    .servicio-card {
      padding: 1.5rem;
    }
  }
  