/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Header */
header {
  border-bottom: 1px solid #ddd;
}

.header-container {
  padding: 20px 0;
  text-align: center;
}

.logo {
  height: 60px;
}

/* Seção topo alerta */
.topo-alerta {
  background-color: #eee;
  padding: 40px 20px;
  text-align: center;
  color: #111;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid #ccc;
}

.topo-alerta strong {
  display: block;
  margin: 10px 0 15px;
  font-size: 1.3rem;
}

/* Seção recuperar veículo */
.recuperar-veiculo {
  padding: 40px 20px;
  color: #222;
  font-size: 1.1rem;
  line-height: 1.5;
}

.recuperar-veiculo h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 30px;
  color: #000;
  font-weight: 700;
}

/* Como ajudamos */
.como-ajudamos {
  padding: 40px 20px;
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.como-ajudamos h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.como-ajudamos p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 1.1rem;
}

/* Blocos de serviços */
.blocos-servicos {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.bloco-servico {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  flex: 1 1 280px;
  padding: 25px 20px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
  text-align: center;
  color: #222;
  transition: box-shadow 0.3s ease;
}

.bloco-servico:hover {
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.12);
}

.icone {
  font-size: 3rem;
  margin-bottom: 15px;
}

.bloco-servico h3 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.bloco-servico p {
  font-size: 1rem;
  line-height: 1.4;
  color: #444;
}

/* Quem somos */
.quem-somos {
  padding: 40px 20px;
  text-align: center;
}

.quem-somos h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

.quem-somos p {
  max-width: 700px;
  margin: 0 auto 15px;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding: 40px 20px;
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  max-width: 900px;
  margin: 0 auto 60px;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.pergunta {
  margin-bottom: 25px;
}

.pergunta h3 {
  font-weight: 600;
  font-size: 1.15rem;
  color: #111;
  margin-bottom: 8px;
}

.pergunta p {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

/* Formulário */
.formulario {
  padding: 0 20px 60px;
}

.formulario h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.formulario form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario label {
  font-weight: 600;
  color: #222;
}

.formulario input,
.formulario textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.formulario input:focus,
.formulario textarea:focus {
  border-color: #000;
  outline: none;
}

.formulario button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario button:hover {
  background-color: #333;
}

/* Mensagem sucesso */
#msg {
  text-align: center;
  font-weight: 600;
}

/* Rodapé */
footer {
  background-color: #f9f9f9;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ddd;
}

footer a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Responsividade */
@media (max-width: 900px) {
  .blocos-servicos {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .topo-alerta {
    font-size: 1rem;
  }
  .recuperar-veiculo {
    font-size: 1rem;
  }
  .como-ajudamos h2,
  .quem-somos h2,
  .faq h2,
  .formulario h2 {
    font-size: 1.5rem;
  }
}
