@font-face {
  font-family: "CocoSharp";
  src: url("../fonts/coco-sharp-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100vw;
  height: 100vh;
  font-family: "CocoSharp", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9fafb;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.imagem {
  width: 300px;
  height: 300px;
  background-image: url("../assets/manutencao.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}

@media (min-width: 600px) {
  .imagem {
    width: 350px;
    height: 350px;
  }
}

@media (min-width: 900px) {
  .imagem {
    width: 450px;
    height: 450px;
  }
}
