
  /* Contenedor general */
  .feature {
    background: #f8f9fa;
  }

  /* Badge de sección */
  .section-badge {
    display: inline-block;
    background: #e7f1ff;
    color: #011547;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 10px;
  }

  /* Título principal */
  .feature-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  /* Subtítulo */
  .feature-subtitle {
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 18px;
  }

  /* Introducción */
  .feature-intro {
    max-width: 760px;
    margin: auto;
    font-size: 1.05rem;
    color: #555;
  }

  /* Tarjetas de servicios */
  .service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  /* Imagen dentro de la tarjeta */
  .service-img {
    overflow: hidden;
    flex-shrink: 0;
  }

  .service-img img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    display: block;
  }

  .service-card:hover .service-img img {
    transform: scale(1.08);
  }

  /* Contenido de la tarjeta */
  .service-content {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Título del servicio */
  .service-content a.title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }

  .service-content a.title:hover {
    color: #0d6efd;
  }

  /* Link "Ver más" */
  .service-link {
    font-weight: 500;
    color: #0d6efd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
  }

  .service-link i {
    transition: transform 0.3s ease;
  }

  .service-link:hover i {
    transform: translateX(5px);
  }

  /* Animación fade-up */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .fade-up.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive tweaks */
  @media (max-width: 576px) {
    .feature-title {
      font-size: 1.8rem;
    }
  }
