
    :root {
      --azul-principal: #0A3A66;
      --azul-claro: #A9D6E5;
      --cinza-fundo: #F5F5F5;
      --texto: #2E2E2E;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lato', sans-serif;
      background-color: #FFFFFF;
      color: var(--texto);
      line-height: 1.6;
    }

    h1, h2, h3 {
      font-family: 'Montserrat', sans-serif;
      color: var(--azul-principal);
      margin-bottom: 0.5em;
    }

    .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  max-height: 100vh;         /* Impede que ultrapasse a altura da tela */
  overflow-y: auto;          /* Ativa scroll vertical se necessário */
  background-color: var(--cinza-fundo);
  padding: 2em 1em;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  scroll-behavior: smooth;   /* Rola com suavidade */
}

/* Opcional: deixar a barra de rolagem discreta no Chrome/Webkit */
.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: var(--azul-claro);
  border-radius: 10px;
}

    .sidebar img {
      width: 160px;
      margin: 0 auto 1em;
      border-radius: 8px;
    }

    .sidebar p {
      font-size: 0.85em;
      color: #555;
      margin-bottom: 2em;
      font-style: italic;
    }

    .sidebar a {
      display: block;
      margin: 1em 0;
      text-decoration: none;
      color: var(--texto);
      font-weight: 500;
      padding: 0.5em 1em;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .sidebar a:hover {
      background-color: var(--azul-claro);
      color: var(--azul-principal);
    }

    .main-content {
      margin-left: 240px;
      padding: 2em;
    }

    header {
  text-align: center;
  padding-bottom: 2em;
}

.lead {
  font-size: 1.2em;
  color: #555;
  font-style: italic;
}

    section {
      max-width: 900px;
      margin: auto;
      padding: 2em 0;
    }

    .card {
      background-color: var(--cinza-fundo);
      padding: 2em;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      margin-bottom: 2em;
    }

    button {
      background-color: var(--azul-principal);
      color: #FFFFFF;
      border: none;
      padding: 0.75em 1.5em;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      transition: background 0.3s ease;
      margin-top: 1em;
    }

    button:hover {
      background-color: var(--azul-claro);
      color: var(--azul-principal);
    }

   footer {
  background-color: var(--cinza-fundo);
  color: var(--texto);
  padding: 2em 1em;
  text-align: center;
  font-size: 0.9em;
  border-top: 2px solid var(--azul-claro);
}

.footer-nav {
  margin-bottom: 1em;
}

.footer-nav a {
  margin: 0 0.5em;
  color: var(--texto);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--azul-principal);
}
    
 form.card {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  background-color: var(--cinza-fundo);
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

form label {
  font-weight: 600;
  color: var(--azul-principal);
  font-family: 'Montserrat', sans-serif;
}

form input, textarea {
  width: 100%;
  padding: 0.75em;
  margin-top: 0.3em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

button {
  margin-top: 1em;
  padding: 0.7em 1.5em;
  font-size: 1em;
  background-color: var(--azul-principal);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: var(--azul-claro);
}
.map-container {
  position: relative;
  max-width: 900px;
  margin: 2em auto;
}

.map-base {
  width: 100%;
  border-radius: 8px;
}

.marker {
  position: absolute;
  width: 28px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}