.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 2px;
  gap: 2px;
  background-color: #181717;
  outline: 3px #181717 solid;
  outline-offset: -3px;
  border-radius: 5px;   

  cursor: pointer;
  transition: 400ms;
  margin-left: 100px;
  height: 35px;
}

.button .text {
  color: white;
  font-weight: 700;
  font-size: 1em;
  transition: 400ms;
  margin: 15px;
}

.button svg path {
  transition: 400ms;
}

.button:hover {
  background-color: rgb(11, 215, 11);
}

.button:hover .text {
  color: #181717;
}

.button:hover svg path {
  fill: #181717;
}

@media (max-width: 600px) {
  .button{
    display: none;
  }
}

/*Button de download*/
.cssbuttons-io {
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 0.8em;
  cursor: pointer;
  border: none;
  background: linear-gradient(to right, #0a9841c4, #027e2b);
  color: ghostwhite;
  overflow: hidden;
  margin-left: 10px;
  margin-right: 10px;
}

.cssbuttons-io svg {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em;
}

.cssbuttons-io span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
  display: inline-flex;
  align-items: center;
  padding: 0.8em 1.2em 0.8em 1.05em;
}

.cssbuttons-io::before,
.cssbuttons-io::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cssbuttons-io::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.cssbuttons-io:hover::before {
  transform: translate3d(100%, 0, 0);
}

.cssbuttons-io:active {
  transform: scale(0.95);
}
