/* Estilização do formulário */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Botão de envio */
.btn-enviar {
  background-color: #22c55e; /* verde Tailwind-500 */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-enviar:hover {
  background-color: #16a34a; /* verde Tailwind-600 */
}

/* Botão WhatsApp flutuante */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #22c55e;
  color: white;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn:hover {
  background-color: #16a34a;
}

/* Formatação básica de textos e títulos (caso queira adicionar) */
h2, h3 {
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

.icone-branco {
    filter: 
        drop-shadow(0 0 2px white)        
        drop-shadow(0 0 2px white);
}