.credentialing {
  --bg-color: #181717;
  --bg-color-light: #303030;
  --text-color-hover: #c8a964;
  --box-shadow-color: rgba(249, 250, 185, 0.8);
}

.cardProvider {
  width: 100%;
  height: 300px;
  background: #000;
  border-top-right-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.cardProvider:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px var(--box-shadow-color);
}

.cardProvider:hover .overlay {
  display: block;
  transform: scale(8) translateZ(0);
}

.cardProvider:hover .circle {
  border-color: var(--bg-color-light);
  background: var(--bg-color);
}

.cardProvider:hover .circle:after {
  background: var(--bg-color-light);
}

.cardProvider:hover p {
  color: var(--text-color-hover);
}

.cardProvider:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11), 0 15px 24px var(--box-shadow-color);
}

.cardProvider p {
  font-size: 17px;
  color: white;
  margin-top: 30px;
  z-index: 1000;
  transition: color 0.3s ease-out;
  text-align: center;
}

.circle {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid #303030;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.circle:after {
  content: '';
  width: 118px;
  height: 118px;
  display: block;
  position: absolute;
  background: var(--bg-color);
  border-radius: 50%;
  top: 5px;
  left: 5px;
  transition: opacity 0.3s ease-out;
}

.circle img {
  z-index: 10000;
  transform: translateZ(0);
}

.overlay {
  width: 118px;
  position: absolute;
  height: 118px;
  border-radius: 50%;
  background: var(--bg-color);
  top: 70px;
  left: 50px;
  z-index: 0;
  transition: transform 0.3s ease-out;
  display: none;
}

/* Estilos para dispositivos móviles */
@media (max-width: 767px) {
  .cardProvider {
    height: 200px;
  }

  .cardProvider p {
    margin: auto !important;
  }

  .circle {
    margin-top: 10px;
  }
}

/* Estilos para tabletas */
@media (min-width: 768px) and (max-width: 1023px) {
  .cardProvider {
    height: 200px;
  }

  .cardProvider p {
    margin: auto !important;
  }

  .circle {
    margin-top: 10px;
  }
}
