body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8; /* Fundo em tom de azul claro */
    padding-bottom: 0px; /* Deixe espaço suficiente para o footer */
}

/* Navbar unificada */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #0052A4;
    height: 56px; /* Mesma altura para todas as páginas */
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    top: 0;
    border-radius: 0;
}



.navbar a[role="button"] {
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #1976d2;
  border-radius: 25px;
  background-color: #ffffff;
  color: #1976d2;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.navbar a[role="button"]:hover {
  background-color: #e3f2fd;
  color: #0d47a1;
  transform: scale(1.05);
}






.logo {
    margin-right: auto;
    margin-left: 16px;
    padding: 16px;
}

.logo img {
    max-height: 40px;
    height: auto;
}

/* Estilos do menu hambúrguer */
#hamburger-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-icon {
    width: 30px;
    height: 3px;
    background-color: rgb(255, 252, 252);
    margin: 5px 0;
}

/* Menu dropdown */
#menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    z-index: 999;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#menu a {
    display: block;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
    font-size: 16px;
}

#menu a:hover {
    background-color: #f0f0f0;
}

.container {
    position: relative; /* Certifique-se de que o contêiner tem posição relativa */
    flex: 1; /* Faz o conteúdo expandir para empurrar o footer para o final */
}

.duvidas-icon {
    font-size: 16px;
    font-weight: 700;
    color: #007bff;
    cursor: pointer;
    position: relative; /* Alterado para relativo */
    margin: 8px auto; /* Centraliza horizontalmente */
    margin-bottom: 16px;
    text-align: center;
    width: fit-content; /* Ajusta a largura para o conteúdo */
}

#texto-duvidas {
    display: none;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px; /* Mesma largura do formulário */
    margin: 16px auto; /* Centraliza o texto e dá espaçamento */
    color: #000000; /* Cor do texto */
}

#texto-duvidas p {
    font-family: 'Inter', sans-serif;
    color: #212121;
}

/* Cabeçalhos */
h1 {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 1.5rem;
    color: #000000; 
    text-align: center;
}

h2 {
    color: #000000; 
    font-weight: 700;
    font-size: 24px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#map-container {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 600px;
    margin: 16px auto; /* Margem para centralizar */
}

#map {
    width: 100%;
    height: 300px; /* Altura do mapa */
}

h1 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000; /* Azul escuro */
    text-align: center;
}

#panel {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 600px;
    margin: 8px auto; /* Margem para centralizar */
}

label {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #000000;
    display: auto;
    font-weight: 500;
}


input {
    background-color: #fff;
    color: #212121; /* Cor do texto */
    font-family: "Inter", sans-serif;
    margin: 8px 0 16px 0;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #ccc; /* Bordas suaves */
    font-size: 16px;
}

button {
    background-color: #0052A4;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 40px;
    cursor: pointer;
    display: block;
    margin: 8px auto;
    width: 100%;
    border: none;
}

button:hover {
    background-color: #007bff; 
}

#result {
    margin: 8px auto; /* Margem para centralizar */
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    
}

/* Ajustar o padding para não cobrir o conteúdo */
footer {
    font-family: "Inter", sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0052A4;
    height: 56px;
    width: 100%;
    margin-top: 20px; /* Espaço entre o footer e o conteúdo acima */
    position: relative; /* Mantém o footer dentro do fluxo da página */
}

footer a { 
    color: #ffffff;
text-decoration: none;
}



