:root{
  --amarelo:#F6B300;
  --preto:#0f0f10;
  --cinza:#f3f4f6;
  --branco:#ffffff;
  --texto:#111827;
  --muted:#6b7280;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Arial, sans-serif;
  background: var(--cinza);
  color: var(--texto);
}

/* ===== TOPO ===== */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 40px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-badge{
    background:transparent;
    padding:0;
    border-radius:0;
    box-shadow:none;
    display:flex;
    align-items:center;
    height:60px;
    overflow:hidden;
}

.logo{
    height:60px !important;
    max-height:60px !important;
    width:auto !important;
    display:block;
}

.brand-title{
  color:#fff;
  font-weight:800;
  letter-spacing:.3px;
  line-height:1.1;
}
.brand-sub{
  color: rgba(255,255,255,.72);
  font-size: 13px;
  margin-top: 2px;
}

nav{
    display:flex;
    align-items:center;
    margin-left:auto;
}

nav a{
    color: rgba(255,255,255,.9);
    text-decoration:none;
    font-weight:700;
    margin-left:28px;
    font-size:16px;
}

.hero-inner{
    max-width: 980px;
    margin: 20px auto;
    padding: 22px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
    border: 1px solid rgba(17,17,17,.06);
}

.hero h1{
  margin:0;
  font-size: 26px;
}
.hero p{
  margin:8px 0 0;
  color: var(--muted);
}

/* ===== CARD RASTREIO ===== */
main{
  max-width: 980px;
  margin: 14px auto 0;
  padding: 0;
}

.card{
  background: var(--branco);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  border: 1px solid rgba(17,17,17,.06);
}

h2{ margin:0; font-size: 18px; }

.form-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
  margin-top: 14px;
}

input{
  width: 280px;
  max-width: 100%;
  padding: 13px 14px;
  border: 1px solid #d7d9dd;
  border-radius: 12px;
  font-size: 15px;
  outline:none;
  background: #fff;
}
input:focus{
  border-color: var(--amarelo);
  box-shadow: 0 0 0 4px rgba(246,179,0,.18);
}

button{
  background: var(--amarelo);
  color:#111;
  padding: 13px 18px;
  border:none;
  border-radius: 12px;
  font-weight: 900;
  cursor:pointer;
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(246,179,0,.25);
}
button:hover{ filter: brightness(.96); }

.hint{
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* ===== RODAPÉ ===== */
footer{
  text-align:center;
  color: #6b7280;
  padding: 26px 12px;
}

/* Banner com imagem de fundo */
.hero-inner{
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,0.25);
}

}

/* texto acima da camada escura */
.hero-inner *{
  position: relative;
  z-index: 1;
}
body{
  background-image: url("../img/fundo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* camada escura por cima do fundo */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: -1;
  pointer-events: none;
}
/* =========================
   📱 AJUSTES PARA CELULAR
   ========================= */
@media (max-width: 700px){

  /* topo */
  header{
    height: auto !important;      /* deixa crescer se precisar */
    padding: 10px 14px !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand{
    gap: 10px;
  }

  .logo{
    height: 42px !important;
  }

  .brand-title{
    font-size: 14px !important;
  }

  .brand-sub{
    font-size: 11px !important;
  }

  nav{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 14px;
  }

  nav a{
    margin-left: 0 !important;
    font-size: 13px !important;
  }

  /* hero e card */
  .hero{
    margin-top: 16px;
    padding: 0 12px;
  }

  .hero-inner{
    padding: 16px;
  }

  .hero h1{
    font-size: 20px;
  }

  .hero p{
    font-size: 13px;
  }

  main{
    padding: 0 12px;
  }

  .card{
    padding: 16px;
  }

  /* formulário em coluna */
  .form-row{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  input{
    width: 100% !important;
    min-width: 0 !important;
  }

  button{
    width: 100%;
  }
}
/* ===== Patch mobile (melhorar header + fundo sem cinza) ===== */
@media (max-width: 700px){

  /* 1) Header mais baixo e alinhado */
  header{
    padding: 8px 12px !important;
    gap: 6px !important;
  }

  .logo{ height: 36px !important; }
  .brand-title{ font-size: 13px !important; }
  .brand-sub{ font-size: 10px !important; }

  /* menu como “pílulas” (fica mais bonito no mobile) */
  nav{
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 2px;
  }
  nav a{
    font-size: 12px !important;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
  }

  /* 2) Corrigir fundo cinza embaixo (mobile + background fixed) */
  body{
    min-height: 100vh;
    background-color: #0b0b0b;          /* nunca aparece cinza */
    background-attachment: scroll;      /* no celular, fixed dá bug */
    background-position: center top;    /* melhor enquadramento */
  }

  /* Cards um pouco mais compactos */
  .hero-inner{ padding: 14px; }
  .card{ padding: 14px; }

  .hero h1{ font-size: 19px; }
  .hero p{ font-size: 12px; }
}

/* ===== PRAÇAS ATENDIDAS ===== */

.pracas-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.praca-col{
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.praca-col h3{
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #111;
}

.praca-col ul{
  margin: 0;
  padding-left: 18px;
  columns: 2; /* deixa em duas colunas dentro do card */
  column-gap: 22px;
}

.praca-col li{
  margin-bottom: 6px;
  color: #333;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 700px){
  .pracas-grid{
    grid-template-columns: 1fr;
  }

  .praca-col ul{
    columns: 1;
  }
}
header{
  position: relative;
  z-index: 9999;
}

nav a{
  position: relative;
  z-index: 10000;
}

header{
  position: relative;
  z-index: 9999;
}

nav{
  position: relative;
  z-index: 10000;
}

nav a{
  position: relative;
  z-index: 10001;
  pointer-events: auto;
}

.praca-col{
  border: 1px solid rgba(17,17,17,0.10);
  background: rgba(255,255,255,0.96);
}

.praca-col h3{
  color: #111;
  font-weight: 800;
}

main{
  margin-top: 18px !important;
}

.card{
  max-width: 980px;
  margin: 0 auto;
}

.btn-whatsapp{
  display: inline-block;
  margin-top: 20px;
  padding: 14px 22px;
  background: #25D366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  transition: 0.2s;
}

.btn-whatsapp:hover{
  background: #1ebe5d;
}

.btn-whatsapp i{
  margin-right: 8px;
  font-size: 18px;
}

/* ===== Botão flutuante WhatsApp ===== */
.whats-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;

  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
}

.whats-float:hover{
  filter: brightness(0.96);
}

.whats-icon{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);

  display: grid;
  place-items: center;

  font-size: 16px;
  line-height: 1;
}

.whats-text{
  font-size: 14px;
}

/* no celular, deixar só o círculo (sem texto) */
@media (max-width: 700px){
  .whats-text{ display: none; }
  .whats-float{
    padding: 12px;
  }
}

/* ===== Botão flutuante WhatsApp oficial ===== */
.whats-float{
  position: fixed;
  right: 18px;
  bottom: 18px;

  z-index: 999999; /* muito alto */

  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: #25D366;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;

  box-shadow: 0 14px 30px rgba(0,0,0,0.35);

  text-decoration: none;
  overflow: hidden; /* corta qualquer coisa vazando */
}


.whats-float:hover{
  transform: scale(1.06);
  filter: brightness(0.95);
}

/* FIX Edge: botão WhatsApp */
.whats-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;

  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: #25D366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none !important;
  overflow: hidden;
  line-height: 0;
}

.whats-float i{
  font-size: 30px;
  line-height: 1;
  display: block;
}

.whats-float:visited,
.whats-float:hover,
.whats-float:active{
  color: #fff;
  text-decoration: none;
}

/* FIX Edge: garantir grid nas cidades */
.pracas-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

@media (max-width: 900px){
  .pracas-grid{
    grid-template-columns: 1fr !important;
  }
}

.praca-col ul{
  padding-left: 18px;
}

.praca-col li{
  margin-bottom: 8px;
}

