@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background-color:rgb(242, 240, 225);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 16px;
}

.logo {
  display: block;
  width: 250px;
  height: auto;
  margin: 0 auto 24px;
}

.title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 24px;
}

.service-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  border: 2px solid #d4b150;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.service-button:hover {
  background-color:rgb(241, 230, 209);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}

.buttons-container {
  margin-top: 50px;
}