<!DOCTYPE html>

<html lang="pt-BR">

<head>

<meta charset="UTF-8">

<title>ITBI e Cartório</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0">


<style>

* {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

  font-family: Arial, Helvetica, sans-serif;

}


body {

  background: #eef2f7;

  color: #1f2937;

}


/* HERO */

header {

  background: linear-gradient(135deg, #1e3a8a, #2563eb);

  color: white;

  padding: 80px 20px;

  text-align: center;

}


header h1 {

  font-size: 36px;

  margin-bottom: 15px;

}


header p {

  font-size: 18px;

  max-width: 700px;

  margin: auto;

}


header a {

  display: inline-block;

  margin-top: 30px;

  background: #22c55e;

  color: white;

  padding: 16px 35px;

  text-decoration: none;

  border-radius: 8px;

  font-weight: bold;

}


/* SEÇÕES */

section {

  max-width: 1100px;

  margin: 60px auto;

  padding: 0 20px;

}


.card {

  background: white;

  padding: 50px;

  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

}


/* BENEFÍCIOS */

.beneficios ul {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 20px;

  list-style: none;

  margin-top: 30px;

}


.beneficios li {

  background: #f8fafc;

  padding: 20px;

  border-radius: 10px;

  text-align: center;

}


/* FORM */

form {

  max-width: 500px;

  margin: auto;

  margin-top: 30px;

}


input, select, textarea {

  width: 100%;

  padding: 14px;

  margin-bottom: 15px;

  border-radius: 8px;

  border: 1px solid #cbd5e1;

}


button {

  width: 100%;

  background: #1e3a8a;

  color: white;

  border: none;

  padding: 16px;

  border-radius: 8px;

  font-size: 16px;

  font-weight: bold;

  cursor: pointer;

}


/* WHATSAPP */

.whatsapp {

  position: fixed;

  bottom: 20px;

  right: 20px;

  background: #25d366;

  color: white;

  font-size: 26px;

  padding: 16px;

  border-radius: 50%;

  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);

}

</style>

</head>


<body>


<header>

  <h1>ITBI e Cartório sem dor de cabeça</h1>

  <p>Cuidamos da emissão de ITBI e despacho cartorial com rapidez e segurança.</p>

  <a href="#form">Solicitar atendimento</a>

</header>


<section class="card beneficios">

  <h2 style="text-align:center">Como ajudamos você</h2>

  <ul>

    <li>Emissão de ITBI</li>

    <li>Despacho em cartório</li>

    <li>Acompanhamento completo</li>

    <li>Agilidade e segurança</li>

  </ul>

</section>


<section class="card" id="form">

  <h2 style="text-align:center">Solicite atendimento</h2>


  <form action="https://formsubmit.co/SEUEMAIL@EMAIL.COM" method="POST">

    <input type="hidden" name="_captcha" value="false">


    <input type="text" name="nome" placeholder="Seu nome" required>

    <input type="email" name="email" placeholder="Seu e-mail" required>

    <input type="text" name="telefone" placeholder="WhatsApp" required>


    <select name="servico" required>

      <option value="">Serviço</option>

      <option>ITBI</option>

      <option>Despacho de Cartório</option>

      <option>Ambos</option>

    </select>


    <textarea name="mensagem" placeholder="Descreva seu caso"></textarea>


    <button type="submit">Enviar</button>

  </form>

</section>


<a href="https://wa.me/5511999999999" class="whatsapp" target="_blank">💬</a>


</body>

</html>