/* Arquivo de otimizações de SEO para o site da Nomad Consultoria */

/* Estilos para melhorar a acessibilidade e SEO */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Melhorias para contraste e acessibilidade */
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Melhorias para estrutura semântica */
.section {
  position: relative;
}

.section:focus {
  outline: none;
}

/* Melhorias para breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs .current {
  color: var(--primary-color);
}

/* Melhorias para estrutura de cabeçalhos */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

/* Melhorias para imagens */
img {
  max-width: 100%;
  height: auto;
}

/* Melhorias para links */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Melhorias para formulários */
input:focus, 
textarea:focus, 
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 0;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

/* Melhorias para botões */
.btn {
  cursor: pointer;
}

/* Melhorias para o mapa do site */
.sitemap-section {
  padding: 3rem 0;
}

.sitemap-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.sitemap-column h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-links li {
  margin-bottom: 0.5rem;
}

.sitemap-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.sitemap-links a:hover {
  color: var(--primary-color);
}

/* Melhorias para o rodapé */
.footer {
  position: relative;
}

/* Melhorias para o schema.org */
.schema-org {
  display: none;
}
