/*
Theme Name: Almar Child
Template: hello-elementor
Version: 1.0
*/
.service-item {
  text-align: center;
  color: #ffffff;
  width: 260px;
  margin: 0 auto 60px;
}

/* círculo exterior degradado */
.icon-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, #9ddaff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: transform 0.25s ease;
  overflow: visible;
}

/* círculo interior oscuro, centrado */
.icon-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;      /* tamaño del círculo negro */
  height: 160px;
  transform: translate(-50%, -50%);  /* esto lo centra sí o sí */
  border-radius: 50%;
  background: #0b1017;
}

/* icono blanco */
.icon-wrapper .elementor-icon {
  position: relative;
  z-index: 1;
  font-size: 64px;
  color: #ffffff;
}

/* hover */
.service-item:hover .icon-wrapper {
  transform: scale(1.06);
}
