/* Estilos específicos para el carrusel de certificaciones */
.imhpnl-certifications {
    padding: 60px 0;
    background-color: #f5f9fc;
  }
  
  .imhpnl-certifications .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .imhpnl-certifications .section-title h2 {
    color: #2C3E50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
  }
  
  .imhpnl-certifications .title-decoration {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #0396FF, #00E676);
    margin: 0 auto;
    border-radius: 2px;
  }
  
  .imhpnl-certifications .nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .imhpnl-certifications .nav-link {
    border: none;
    color: #4A5568;
    font-weight: 600;
    padding: 8px 20px;
    position: relative;
    margin: 0 5px;
    font-family: "Poppins", sans-serif;
  }
  
  .imhpnl-certifications .nav-link.active {
    color: #33A8FF;
    background: transparent;
  }
  
  .imhpnl-certifications .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #33A8FF;
    border-radius: 3px;
  }
  
  .imhpnl-certifications .certification-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 25px;
    background: #fff;
  }
  
  .imhpnl-certifications .certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  .imhpnl-certifications .card-header {
    padding: 25px 20px;
    text-align: center;
    color: white;
    border: none;
  }
  
  .imhpnl-certifications .practitioner .card-header {
    background: linear-gradient(135deg, #0396FF, #0D47A1);
  }
  
  .imhpnl-certifications .master .card-header {
    background: linear-gradient(135deg, #00c6ff, #0078ff);
  }
  
  .imhpnl-certifications .trainer .card-header {
    background: linear-gradient(135deg, #00E676, #00897B);
  }
  
  .imhpnl-certifications .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 30px;
  }
  
  .imhpnl-certifications .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
  }
  
  .imhpnl-certifications .card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  .imhpnl-certifications .card-body {
    padding: 25px;
    color: #4A5568;
    font-family: "Open Sans", sans-serif;
  }
  
  .imhpnl-certifications .certification-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
  }
  
  
  .imhpnl-certifications .carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .imhpnl-certifications .carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #33A8FF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .imhpnl-certifications .carousel-control:hover {
    background-color: #3ac162;
    transform: scale(1.1);
  }
  
  /* Ajustes para móviles */
  @media (max-width: 768px) {
    .imhpnl-certifications .section-title h2 {
      font-size: 1.8rem;
    }
    
    .imhpnl-certifications .nav-link {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
    
    .imhpnl-certifications .card-title {
      font-size: 1.2rem;
    }
  }
  