/* Breadcrumb */
.breadcrumb {
  padding-bottom: 20px;
  font-size: 13px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  color: #6b7280;
}

.breadcrumb li a {
  color: #0f766e;
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* Separador visual */
.breadcrumb li::after {
  content: "›";
  margin-left: 6px;
  color: #9ca3af;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li[aria-current="page"] {
  color: #111827;
  font-weight: 600;
}


section {
  padding: 60px 0;
}

/* Alternância suave de fundo entre seções (se main>section já existir no CSS global, pode remover esta parte) */
section:nth-of-type(odd) {
  background-color: #ffffff;
}

section:nth-of-type(even) {
  background-color: #f8f9fb;
}

.hero-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-inner .hero-title span {
  white-space: nowrap;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px auto;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  margin: 0;
  line-height: 1.7;
}

.services-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .services-grid-2 {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card ul {
  padding-left: 16px;
  margin-top: 10px;
}

.service-card li {
  font-size: 14px;
  margin-bottom: 6px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge-pill {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e5f3ec;
  color: #0f5132;
}

.grid-dif {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 18px;
}

.dif-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Grid dos cards de indicação */
.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Card mais destacado */
.use-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 18px 16px;
  border: 1px solid #e5e7eb;               /* borda leve para destacar */
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06); /* sombra um pouco mais forte */
  font-size: 14px;
  color: #111827;                           /* texto mais escuro */
}

/* Título do card */
.use-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Ícones dentro do título (font-awesome) */
.use-card h3 i {
  font-size: 15px;
  color: #0f766e;  /* tom verde/azulado para linkar com a identidade */
}

/* Texto do card */
.use-card p {
  margin: 0;
  margin-top: 4px;
  color: #4b5563;
  line-height: 1.6;
}

/* Lista de usos */
.use-card ul {
  padding-left: 18px;
  margin-top: 8px;
  margin-bottom: 0;
}

.use-card li {
  margin-bottom: 4px;
  color: #374151;
}

/* Pequeno efeito no hover para dar sensação de clique/qualidade */
.use-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .09);
  transition: all 0.2s ease;
}


.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.faq-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}


  /* GALERIA DE GRANILITE */

#galeria-piso {
  background-color: #ffffff;
}

/* GALERIA DE GRANILITE CENTRALIZADA */
.piso-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;    /* centraliza cada linha */
  gap: 12px;
  margin-top: 24px;
}

/* Miniaturas */
.piso-gallery img {
  width: 130px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.piso-gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 12px rgba(0,0,0,.15);
}

#galeria-piso .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


/* Fundo da galeria com leve destaque */
#galeria-piso {
  background-color: #f1f5f9;
}

/* LIGHTBOX */

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0,0,0,.7);
}

#lightbox.close-area {
  cursor: zoom-out;
}