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

body {
  background-color: #f3f3f3;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 900px;
  margin: auto;
}

.titulo {
  text-align: center;
  color: #4340b4;
  font-size: 2.4em;
  margin-bottom: 20px;
  font-weight: 700;
}

.conteudo {
  padding: 20px;
}

.cabecalhoConteudo h2 {
  font-size: 1.6em;
  color: #333;
  margin-bottom: 15px;
}

.conteudoLocalizacao p {
  font-size: 1.3em;
  margin: 10px 0;
}

.botao {
  background-color: #4c49c9;
  border: none;
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.botao:hover {
  background-color: #3b38a1;
}

.gmap_canvas iframe {
  width: 100%;
  height: 450px;  
  border-radius: 10px;
  border: none;
  margin-top: 15px;
}

#favIcon {
  font-size: 32px;
  cursor: pointer;
  float: right;
  color: #888;
  transition: 0.2s;
}

#favIcon:hover {
  color: #ff4d6d;
}

#listaContainer {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: none; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#listaContainer h3 {
  margin-bottom: 10px;
}

#listaLocais li {
  list-style: none;
  background: #f4f4ff;
  border-left: 4px solid #4c49c9;
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
}

#gmap_canvas {
    width: 100% !important;
    height: 600px !important; 
    border-radius: 10px;
}
.mapouter, .gmap_canvas {
    width: 100% !important;
}
.campo {
    width: 100%;
    padding: 12px 16px;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: #f7f7f7;
    transition: 0.3s ease-in-out;
    outline: none;
    margin-bottom: 15px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.08);
}

.campo:focus {
    background: #fff;
    border-color: rgb(73, 71, 158);
    box-shadow: 0px 0px 10px rgba(73, 71, 158, 0.3);
}

.conteudoLocalizacao {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
}


.botao {
    background: rgb(73, 71, 158);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
    font-weight: 600;
}

.botao:hover {
    background: rgb(58, 56, 130);
}

.botao:active {
    transform: scale(0.97);
}


