:root{
  --color: #17a2ff;
}
.botonEspecialUno{
  background-color: #0772b9;
  position: relative;
  padding: 10px 25px;
  text-decoration: none;
  color: #fff;
  /*letter-spacing: 10px;*/
  text-indent: 10px;
  z-index: 2;
}
.cajaBotonera{
  display: flex;
  height: 10vh;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.botonEspecialUno{
  border: 3px solid;
  border-color: #c1f531;
}

.botonEspecialUno:hover{
  background-color: #001a2b;
  box-shadow: 0 0 20px var(--color);
  border-color: var(--color);
}

.botonEspecialUno span:nth-child(n){
  position: absolute;
  width: 5px;
  height: 5px;
  border: 3px solid;
  transition: all 0.6s ease;
  background-color: #c1f531;
}

.botonEspecialUno span:nth-child(1){
  right: 10%;
  top: -10px;
  
}

.botonEspecialUno span:nth-child(2){
  left: 10%;
  bottom: -10px;
}

.botonEspecialUno:hover span:nth-child(1){
  right: 80%;
  transform: rotate(90deg);
  color: var(--color);
  background-color: var(--color);
  
}

.botonEspecialUno:hover span:nth-child(2){
  left: 80%;
  transform: rotate(90deg);
  color: var(--color);
  background-color: var(--color);
}