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

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

:root {
  --verde: #8eb199;
  --marrom: #7f6449;
  --bege: #bbae9b;
  --bege-claro: #ece3dd;
  --branco: #ffffff;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: var(--marrom);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

a:focus {
  outline: 2px solid var(--marrom);
  outline-offset: 3px;
}

/* Floating WhatsApp button (kept here) */
.float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--verde), #6b9a76);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  box-shadow: 0 4px 12px rgba(127, 100, 73, 0.2);
  z-index: 1500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.float:hover {
  transform: scale(1.1);
  box-shadow: #6b76;
  background: linear-gradient(45deg, #6b9a76, var(--verde));
}

.float:active { transform: scale(0.2); }
.my-float { line-height: 1; }
