/* Mapa do Site styles - consistent with site theme */
.mapa-do-site {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
  text-align: left;
}

.mapa-do-site > li {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.mapa-do-site a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mapa-do-site a:hover,
.mapa-do-site a:focus {
  color: #00ffff;
  text-decoration: none;
}

/* nested lists */
.mapa-do-site ul.mapa-do-site {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 255, 255, 0.3);
}

.mapa-do-site ul.mapa-do-site > li {
  position: relative;
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* connector dots */
.mapa-do-site ul.mapa-do-site > li::before {
  content: '';
  position: absolute;
  left: -1.15rem;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #000;
}

/* page header harmony - fix navbar overlap */
.section .title-icon {
  margin-top: 80px; /* Add top margin to avoid navbar overlap */
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section .title-icon span:last-child {
  margin-left: 0.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

/* Add standard section title underline */
.section .title-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: clamp(120px, 28vw, 260px);
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0) 0%, rgba(0, 255, 255, 0.85) 20%, rgba(37, 211, 102, 0.85) 80%, rgba(37, 211, 102, 0) 100%);
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.45), 0 0 10px rgba(37, 211, 102, 0.35);
  border-radius: 2px;
}

/* Add background and container styling */
.section.bg-default {
  background-color: #000;
  min-height: 100vh;
  padding: 2rem 0;
}

.section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section .text-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section .row {
  display: flex;
  justify-content: center;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .section .title-icon {
    margin-top: 60px;
  }
  
  .section .title-icon span:last-child {
    font-size: 1.5rem;
  }
  
  .mapa-do-site {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .mapa-do-site a { 
    font-weight: 500; 
    font-size: 1rem;
  }
  
  .mapa-do-site ul.mapa-do-site { 
    margin-left: 1rem; 
  }
}
