* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
}

/* CONTAINER */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 100;
}

.logo {
  height: 40px;
}

.nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
}

/* HERO */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  color: white;
  text-align: center;
  z-index: 1;
}
#emolumentos{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.emolumentosContainer{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 20rem;
  align-items: center;
}
#sobre{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#LGPD{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10em;
}

#tituloEmolumentos{
    display: flex;
    justify-content: center;
    padding-top: 25px;
}
#tabelaEmolumentos{
    padding: 2rem;
    display: flex;
    justify-content: center;
}
.emolumentosbtn{
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    background-color: white;
    border: 1px solid rgb(218, 216, 216);
}
.emolumentostable{
    border-collapse: collapse;
    width: 100%;
    background-color: rgb(252, 252, 252);
    display: flex;
    justify-content: left;
}
td, tr{
    border: 1px solid rgb(161, 161, 161);
    width: 50%;
    padding: 5px;
}
.tituloAboutList{
  font-size: 18px;
  font-weight: bold;
}
.textAboutList{
  display: flex;
  justify-content: center;
  flex-direction: column;
  list-style: none;
}

/* BOTÕES */
.btn-primary {
  background: #c89b3c;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-block;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
  padding: 12px 24px;
  margin-left: 10px;
}

/* SECTION */
.section {
  padding: 60px 20px;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* DESTAQUE */
.destaque {
  background: #c89b3c;
  color: white;
}

/* SPLIT */
.split {
  display: grid;
  gap: 20px;
}

.split img {
  width: 100%;
  border-radius: 10px;
}

/* HIGHLIGHT */
.highlight {
  background: #f0f0f0;
  padding: 60px;
}

/* MAP */
iframe {
  width: 100%;
  height: 250px;
  border: 0;
  margin: 20px 0;
}

/* FOOTER */
.footer {
  background: rgb(88, 88, 88);
  color: white;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
/* HAMBURGER */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  .menu-icon {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;

    /* 🔥 GARANTE LISTA VERTICAL */
    display: flex;
    flex-direction: column;
    align-items: stretch;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: left; /* 🔥 mais natural que center */
    border-bottom: 1px solid #eee;
  }

  /* MENU ABERTO */
  #menu-toggle:checked + .menu-icon + .nav {
    max-height: 500px;
  }

}