/* Formatação */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variaveis - Como usar variaveis? Na hora de setar a cor você ira usar var() e a cor da variavel. Exemplo: color: var(--white-color)*/

:root {
  --color-one: #00EB34;
  --color-two: #0b361a;
  --color-tree: #d1ffdb;
  --color-four: #138D00;
  --white: #fff;
  --yellow: #ffff00;
}

/* Importação das fontes */
@font-face {
  font-family: "TonCondensed-Black";
  src: url("../fonts/TonCondensed-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "TonCondensed-Bold";
  src: url("../fonts/TonCondensed-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "TonCondensed-Light";
  src: url("../fonts/TonCondensed-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "TonCondensed-Medium";
  src: url("../fonts/TonCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "TonCondensed";
  src: url("../fonts/tone-condensed.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Tags ultilizaveis */

.color-white {
  color: var(--white);
}

.verde {
  color: var(--color-one);
}

/* Botão do Whatsapp */

@keyframes borderChange {
  0% {
    border: 5px solid var(--white);
  }

  50% {
    border: 5px solid #57cb69;
  }

  100% {
    border: 5px solid var(--white);
  }
}

.parceria {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-two);
  position: absolute;

}

.parceria img {
  height: 50px;
}

.btn-what {
  position: fixed;
  z-index: 999;
  bottom: 32px;
  right: 10px;
}

.btn-what a {
  text-decoration: none;
}

.btn-what button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 64px;

  background-color: rgb(0, 235, 51);
  border-radius: 50px;
  cursor: pointer;
  animation: borderChange 3s linear infinite;

}


.btn-what img {
  padding-right: 7px;
}

.btn-what p {
  color: #000;
  font-size: 18px;
  font-weight: 550;
}