/* Etiqueta de categoría */
.service-label {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #333;
    font-weight: bold;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
  }
  
  .label-design {
    background-color: #FF9800;
  }
  
  .label-marketing {
    background-color: #ffeb3b;
  }
  
  .label-development {
    background-color: #4DD0E1;
  }
  
  /* Encabezado de la tarjeta */
  .service-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .service-header img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  
  /* Título y descripción */
  .service-title {
    font-size: 22px;
    font-weight: bold;
    color: #1d1d1d;
  }
  
  .service-description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
  }
  
  /* Contenedor general de las tarjetas */
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  /* Enlace que envuelve cada tarjeta */
  .service-card-link {
    text-decoration: none;
    color: inherit;
    flex: 0 0 calc(33.333% - 30px);
    max-width: 400px;
  }
  
  /* Tarjeta individual */
  .service-card {
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 35px 30px;
    font-family: 'Arial', sans-serif;
    height: 100%;
    transition: box-shadow 0.3s ease;
  }
  
  /* Hover visual */
  .service-card-link:hover .service-card {
    box-shadow: 0 0 0 3px #5ce2e3;
  }
  
  /* Responsive: tablet */
  @media (max-width: 991px) {
    .service-card-link {
      flex: 0 0 calc(50% - 30px);
    }
  }
  
  /* Responsive: móvil */
  @media (max-width: 575px) {
    .service-card-link {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  
 /* Fondo testimonial base */
.testimonial-bg {
    background-image: url('../img/SoftmenaTeam.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
  }
  
  /* Responsive ajustes */
  @media (max-width: 575px) {
    .testimonial-bg {
      min-height: 70vh;
      padding: 40px 15px;
      background-position: top center;
    }
  
  
    .tp-testimonial-area .container {
      padding: 0;
    }
  }
  