html, body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #000 !important;
  color: #fff;
  line-height: 1.6;
  padding-top: 0 !important;
}

.breadcrumb {
  background: #181818;
  color: #FFD700;
  font-size: 0.95rem;
  padding: 0.2rem 1.2rem 0.2rem 1.2rem;
  border-bottom: 1px solid #FFD70033;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 0.3em;
  margin: 0;
}
.breadcrumb a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb a:hover {
  color: #FFA500;
}

.header,
.header.sticky-logo {
  background: #000;
  text-align: center;
  padding: 2rem 1rem 1.5rem 1rem;
  border-bottom: 3px solid #FFD700;
  position: static;
  box-shadow: none;
  margin: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 140px;
  height: auto;
}

.main-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #FFD700;
  letter-spacing: 0.5px;
}

.subtitle {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero {
  background: #111;
  text-align: center;
  padding: 2.5rem 1rem 2rem 1rem;
  margin-bottom: 0;
}

.hero .main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1.2rem;
}

.hero .subtitle {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero .cta-categorias {
  margin-top: 2em;
}

.btn-loja {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700 60%, #FFC300 100%);
  color: #111;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: none;
  margin: 0.5rem;
}

.btn-loja:hover {
  background: linear-gradient(90deg, #FFC300 60%, #FFD700 100%);
  color: #000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.btn-loja.destaque {
  font-size: 1.3rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(90deg, #FFD700 60%, #FFA500 100%);
}

/* Seções gerais */
.intro, .sobre, .faq, .contato, .links-uteis {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.intro p, .sobre p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.8;
}

/* Categorias */
.categorias {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.categorias h2, .sobre h2, .faq h2, .contato h2 {
  color: #FFD700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.grid-categorias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card-categoria {
  background: #181818;
  border-radius: 15px;
  border: 2px solid #FFD70033;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 200px;
  text-decoration: none;
  color: #fff;
}

.card-categoria:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  border-color: #FFD700;
}

.card-categoria img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  margin-bottom: 1rem;
  display: block;
}

.card-categoria span {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

.cta-categorias {
  text-align: center;
  margin-top: 2rem;
}

/* FAQ */
.faq {
  background: #0a0a0a;
  padding: 3rem 1.5rem;
  margin: 3rem 0;
}

.faq h3 {
  color: #FFD700;
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 0.5rem;
}

.faq-item {
  background: #181818;
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #FFD700;
}

.faq-item h4 {
  color: #FFD700;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
}

.faq-item p {
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

/* Contato */
.contato {
  background: #000;
  padding: 3rem 1.5rem;
  text-align: center;
  margin: 3rem 0;
}

.contato h2 {
  color: #FFD700;
  margin-bottom: 1rem;
}

.contato-info {
  background: #181818;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  display: inline-block;
}

.contato-info p {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

/* Links Úteis */
.links-uteis {
  text-align: center;
  margin: 3rem auto;
}

.links-uteis h3 {
  color: #FFD700;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.links-uteis ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.links-uteis li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.links-uteis li a:hover {
  color: #FFA500;
}

/* Rodapé */
.seo-footer {
  background: #000;
  color: #FFD700;
  font-size: 1rem;
  text-align: center;
  padding: 3rem 1.5rem 2rem 1.5rem;
  margin-top: 3rem;
  border-top: 3px solid #FFD700;
}

.seo-footer p {
  color: #FFD700;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.seo-footer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
}

.seo-footer a:hover {
  color: #FFA500;
}

/* Responsivo */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .grid-categorias {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .card-categoria {
    min-height: 180px;
    padding: 1rem 0.5rem;
  }
  
  .card-categoria img {
    width: 60px;
    height: 60px;
  }
  
  .links-uteis ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .intro, .sobre, .faq, .contato, .links-uteis {
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  .breadcrumb {
    font-size: 0.9rem;
    padding: 0.1rem 0.7rem;
  }
  .header {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .header.sticky-logo {
    padding: 0.2rem 0 0.2rem 0;
    top: 18px;
  }
  .logo {
    max-width: 90px;
  }
  body {
    padding-top: 60px;
  }
  .hero .main-title {
    font-size: 1.3rem;
  }
  .hero .subtitle {
    font-size: 1rem;
  }
}

/* Ocultar imagens explícitas para SEO */
img[src*="Design-sem-nome-14.webp"],
img[src*="Design-sem-nome-16.webp"] {
  display: none !important;
}

/* Alternativa: substituir por ícone neutro */
.card-categoria img[src*="Design-sem-nome-14.webp"]::before,
.card-categoria img[src*="Design-sem-nome-16.webp"]::before {
  content: "🔒";
  font-size: 2rem;
  display: block;
  text-align: center;
  line-height: 80px;
  }

main {
  padding-top: 0 !important;
  background: #000;
}

@media (max-width: 600px) {
  main {
    padding-top: 60px;
  }
}
