/* Estilo principal - Identidade Neurodiversidade (Opção 2) */

body {
  margin: 0;
  padding: 0;
  background-color: #2e8bdb;
  font-family: "Arial", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.logo-fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  z-index: 1;
  pointer-events: none; /* garante que o usuário consiga clicar no conteúdo */
}

.content-box {
  background: rgba(255, 255, 255, 0.80);
  border-radius: 18px;
  padding: 30px;
  width: 92%;
  max-width: 750px;
  margin-top: 300px;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
  animation: fadeIn ease 1s;
  position: relative;
  z-index: 2; /* Conteúdo na frente */
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

h1, h2 {
  color: #124a89;
  font-weight: bold;
}

p {
  color: #222;
  line-height: 1.5;
  font-size: 1rem;
}

/* Botão WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 32px;
  color: white;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  transition: transform .2s;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
}

/* Formulário */
form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

label {
  font-weight: bold;
  color: #0d3e73;
  font-size: .95rem;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #2e8bdb;
  border-radius: 10px;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button {
  background-color: #004aad;
  color: white;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .2s;
}

button:hover {
  background-color: #003b89;
  transform: scale(1.03);
}

/* Responsividade */
@media (max-width: 768px) {
  .logo-fixed {
    width: 300px;
    height: 300px;
  }
  .content-box {
    margin-top: 220px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .logo-fixed {
    width: 220px;
    height: 220px;
  }
  .content-box {
    margin-top: 170px;
    padding: 18px;
  }
  p {
    font-size: .95rem;
  }
}