#profesionales {
    background: #f8fafc;
  }
  
  .card-profesional {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .card-profesional:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }
  
  .card-profesional__img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #eef2f7;
  }
  
  .card-profesional__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .card-profesional__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .card-profesional__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: .5rem;
    min-height: 48px;
  }
  
  .card-profesional__especialidad {
    color: #0d6efd;
    font-weight: 600;
    font-size: .98rem;
    margin-bottom: 1rem;
    min-height: 52px;
    line-height: 1.4;
  }
  
  .card-profesional__especialidad span {
    color: #495057;
    font-weight: 500;
  }
  
  .card-profesional__info {
    flex: 1;
    color: #4b5563;
    font-size: .95rem;
    line-height: 1.55;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 6px;
  }
  
  .card-profesional__info p {
    margin-bottom: 0;
  }
  
  /* Scroll lindo */
  .card-profesional__info::-webkit-scrollbar {
    width: 6px;
  }
  
  .card-profesional__info::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
  }
  
  .card-profesional__info::-webkit-scrollbar-track {
    background: transparent;
  }
  
  /* Tablet */
  @media (max-width: 991.98px) {
    .card-profesional__img-wrap {
      height: 250px;
    }
  }
  
  /* Móvil */
  @media (max-width: 575.98px) {
    .card-profesional__img-wrap {
      height: 220px;
    }
  
    .card-profesional__body {
      padding: 1rem;
    }
  
    .card-profesional__title {
      font-size: 1.08rem;
      min-height: auto;
    }
  
    .card-profesional__especialidad {
      font-size: .94rem;
      min-height: auto;
    }
  
    .card-profesional__info {
      max-height: none;
      overflow: visible;
    }
  }