:root {
  --gold-color: #daa322;
  --blue-color: #0b273f;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  scroll-behavior: smooth;
}

@font-face {
  font-family: Inter;
  src: url(../assets/fonts/Inter-VariableFont_opsz\,wght.ttf);
  font-style: normal;
}
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  display: block;
  font-weight: 400;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px; 
  right: 20px;
  width: 70px; 
  height: 70px; 
  background-color: #25D366; 
  border-radius: 100%;
  z-index: 98;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.275s linear;
  margin-bottom: 10px; 
}

.whatsapp-btn a {
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.whatsapp-btn i {
  font-size: 32px; 
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}
