
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

  body {
  background: linear-gradient(#44a8f9);
  color: #333;
  position: relative;
  padding-top: 80px;
}

  /* Navbar fixa no topo */
#navBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;              /* altura da navbar */
  z-index: 1000;             /* fica sempre acima do conteúdo */
}

/* ---------------- IMAGENS ATRÁS DO CONTEÚDO ---------------- */
.imgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: -1;
}

.img {
  position: absolute;
  z-index: -1;
}

.img img {
  width: 100%;
  height: 100%;
  border-radius: 100px 0px 100px 0px;
}

.img.esquerda {
  left: 75px;
  top: 145px;
  height: 429px;
  clip-path: 13px;
}

.img.direita {
  right: 54px;
  top: 450px;
  width: 380px;
  height: 420px;
}

.img.baixo {
  left: 40px;
  top: 850px;
  width: 420px;
  height: 360px;
}

/* ---------------- PERGUNTAS FREQUENTES ---------------- */
.pgt {
  text-align: center;
  padding: 60px 20px 0 20px;
}

.pgt h2 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px;
}

.pgt-lista {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pgt-item {
  width: 80%;
  max-width: 600px;
  padding: 15px;
  background-color: rgb(225, 241, 231);
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 12px;
  text-align: left;
  transition: background-color 0.3s ease;
  position: relative;
}

.pgt-item.ativo {
  background-color: #4cd964;
  color: white;
}

.pgt-item .resposta {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.pgt-item:last-child {
  margin-bottom: 70px; /* aumenta o espaço para o formulário */
}

/* ---------------- CONTATO ---------------- */
.contato {
  background: linear-gradient(135deg, rgba(231, 231, 231, 0.377));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.214); /* sombra */
  margin: 40px auto;
  padding: 70px;
  border-radius: 17px;
  width: 90%;
  max-width: 800px;
  text-align: center;
}

.contato h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.contato p {
  margin-bottom: 20px;
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
}

form > * {
  margin-bottom: 12px;
}

input, textarea {
  width: 100%;
  padding: 19px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  background-color: white;
}

textarea {
  resize: none;
  height: 80px;
}

.caixa-enviar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.caixa-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0d99ff; 
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.468);
  font-family: Arial, sans-serif;
  user-select: none;
}

.caixa-box input {
  display: none; /* esconde o checkbox padrão */
}

.box {
  width: 20px;
  height: 20px;
  background-color: #f0f0f0;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.caixa-box input:checked + .box {
  background-color: #fff;
  border: 2px solid #0d99ff;
}

.caixa-box input:checked + .box::after {
  content: "✔";
  font-size: 16px;
  color: #0f1b14;
}

.text {
  color: white;
  font-size: 18px;
  font-weight: bold;
}


.btn-enviar {
  background-color: #34c759;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.468);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  
}

.msg-bar {
  position: fixed;
  top: -60px; /* começa escondida acima */
  left: 50%;
  transform: translateX(-50%);
  background-color: #34c759; /* verde de sucesso */
  color: white;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
  transition: top 0.5s ease-in-out;
  z-index: 2000;
}
.msg-bar.show {
  top: 20px; /* aparece suavemente */
}


/* ---------------- FOOTER ---------------- */

.footer {
  background: linear-gradient(135deg, #4facfe, #44a8f9);
  padding: 40px 20px;
  color: white;
  font-family: Arial, sans-serif;
  margin-top: 190px;

}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 15px;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 16px;
}
