@import url("./header.css");
@import url("./main.css");
@import url("./footer.css");

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;600;700&family=Poppins&display=swap');

:root {
  --background-color: #ffffff;
  --container-color: #f8f8f8;
  --text-color: #000;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  height: 100%;
  background-color: var(--background-color);
}

/* Botão Whatsapp */

.whatsapp-fixed {
  position: fixed;
  width: 180px;
  height: 62px;
  bottom: 60px;
  right: 30px;
  padding-left: 10px;
  background-color: #23bf34;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 1px 1px 5px #888;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s;
}

.whatsapp-fixed i {
  margin: 0;
}

.whatsapp-fixed:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
  transition: 0.3s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

.whatsapp-fixed span {
  font-size: 18px;
  width: 120px;
  line-height: 24px;
}