/* Estrutura geral da página */
.pagina-catalogo {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  font-family: "Segoe UI", "Roboto", sans-serif;
  background-color: #f7f9fa;
  text-align: center;
  color: #222;
}

/* Título e parágrafos */
.pagina-catalogo h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #004225;
}

.pagina-catalogo p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #444;
}

/* PDF canvas centralizado */
.visualizador-pdf {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.visualizador-pdf canvas {
  max-width: 100%;
  width: auto;
  height: auto;
  border: 1px solid #ccc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Estilização invisível mas compatível com leitores */
.conteudo-acessivel-seo,
.faq-seo {
  display: none;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (speech), (aural) {
  .conteudo-acessivel-seo,
  .faq-seo {
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    overflow: visible !important;
  }
}

/* FAQ interno (caso você queira mostrar depois) */
.faq-seo h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #003b25;
}

.faq-seo .pergunta {
  margin-bottom: 1.5rem;
}

.faq-seo h3 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #00582b;
}

.faq-seo p {
  font-size: 1rem;
  color: #333;
  margin: 0.3rem 0 0.8rem;
}

.botoes-catalogo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.botoes-catalogo a {
  text-decoration: none;
}

/* Botão 3d */
.pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
}
.shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}
.edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(130deg 100% 16%) 0%,
    hsl(130deg 100% 32%) 8%,
    hsl(130deg 100% 32%) 92%,
    hsl(130deg 100% 16%) 100%
  );
}
.front {
  display: block;
  position: relative;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1.25rem;
  color: white;
  background: hsl(130deg 100% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}
.pushable:hover {
  filter: brightness(110%);
}
.pushable:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}
.pushable:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
.pushable:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}
.pushable:focus:not(:focus-visible) {
  outline: none;
}
/* Responsivo */
@media (max-width: 768px) {
  .pagina-catalogo h1 {
    font-size: 1.5rem;
  }

  .pagina-catalogo p {
    font-size: 1rem;
  }

  .visualizador-pdf canvas {
    width: 100%;
    height: auto;
  }
}

/* Sumário Visivel */
.sumario-visivel {
  background-color: #f9f9f9;
  padding: 2rem 7rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.sumario-visivel h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
  border-left: 4px solid #2e7d32; /* verde */
  padding-left: 12px;
}

.wrapper-sumario-visivel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.sumario-visivel-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px 20px;
}

.sumario-visivel-lista li {
  font-size: 1rem;
  color: #222;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sumario-visivel-lista li strong {
  display: inline-block;
  min-width: 40px;
  font-weight: 600;
  color: #2e7d32;
  font-size: 1.1rem;
}

.sumario-visivel-lista li a {
  color: #2e7d32;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.sumario-visivel-lista li a:hover {
  color: #1b5e20;
  text-decoration: underline;
}

.hidden-catalogo-pdf {
  display: none !important;
}

/* Responsivo */
@media (max-width: 768px) {
  .sumario-visivel {
    padding: 1rem;
  }

  .sumario-visivel h2 {
    font-size: 1.5rem;
  }

  .sumario-visivel-lista {
    grid-template-columns: 1fr; /* forçar 1 coluna no mobile */
  }

  .sumario-visivel-lista li {
    font-size: 0.95rem;
  }

  .sumario-visivel-lista li strong {
    font-size: 1rem;
  }

  .wrapper-sumario-visivel {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
