/* Reset básico */
* {
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
}

/* Define altura mínima para body e html */
html, body {
  height: auto !important;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto !important;
  color: #333;
}

/* Remove margem padrão de imagens que podem "vazar" */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links limpos */
a {
  color: inherit;
  text-decoration: none;
  
}

/* Uniformizar campos de formulário */
input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2 {
  color: #333;
  letter-spacing: 10px;

}

body {
  position: relative;
  margin: 0;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/img/faveditada.png');
  background-repeat: repeat;
  background-size: 250px; /* espaçamento entre as repetições */
  opacity: 0.15; /* opacidade do fundo */
  z-index: -1;
  pointer-events: none;
}




/* Botão padrão */
.button-default {
  background-color: black;
  color: white;
  min-width: 130px;
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 10px;
  transition: 0.3s;
  font-weight: bold;
}

.button-default:hover {
  background-color: white;
  color: black;
  border: 1px solid black;
}


.button-ver {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  min-width: 130px;
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 10px;
  transition: 0.3s;
  font-weight: bold;
    border: 1px solid black;
}

.button-ver:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-align: center;

}

/* Input padrão */
.input-default {
  padding: 10px 30px;
  border-radius: 15px;
  width: 100%;
  border: 1px solid #ccc;
  outline: none;
  transition: border 0.3s ease;
}

.input-default:focus {
  border: 1px solid #151447;
  box-shadow: 0 0 0 3px rgba(24, 74, 107, 0.3);
}

.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 50px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  width: 70px;
  padding: 15px;
  border-radius: 100%;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b358;
  text-decoration: none;
}

