.table-striped {
  --bs-table-striped-bg: rgba(138, 5, 250, 0.07) !important;
}

.h-bg-instagram :hover,
.h-bg-instagram :active,
.h-bg-instagram :focus {
  color: black !important;
  background-color: white !important;
}

.destaque {
  background-color: #f8f8f8;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.entregue {
  display: none !important;
}

.custom-file-input {
  display: none;
}

.custom-file-label {
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.slider-caption.slider-caption-center {
  max-width: 600px !important;
}

.dark #copyrights,
#copyrights.dark {
  margin-bottom: -40px;
  border-radius: 60px 30px 0 0;
}

.centraliza {
  display: table;
  margin: 0 auto;
}

p {
  color: #a2519a !important;
}

.portfolio-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px !important;
}

.portfolio-desc {
  text-align: center !important;
}

.tore-content-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
  /* espaço entre blocos, pode ajustar/retirar */
}

.tore-btn-wrap {
  display: flex;
  flex: 1 1 300px;
  justify-content: center;
  align-items: center;
  min-width: 220px; /* mantém um tamanho mínimo em telas intermediárias */
}

.tore-pdf-btn {
  display: flex; /* Alinhamento com flexbox */
  align-items: center; /* Ícone e texto alinhados verticalmente */
  justify-content: flex-start; /* Texto fica à direita */
  background: #1c9a78;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem 2.1rem;
  border-radius: 26px;
  text-decoration: none;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(28, 154, 120, 0.13);
  cursor: pointer;
  outline: none;
}

.tore-pdf-btn i {
  margin-right: 0.7em; /* Espaço entre o ícone e o texto */
  font-size: 1.5em; /* Mantém o tamanho do ícone */
  flex-shrink: 0; /* Impede o ícone de encolher se o texto for longo */
  transition: color 0.2s, transform 0.2s;
}

.tore-pdf-btn span {
  white-space: normal; /* Permite que o texto quebre em várias linhas */
  text-align: left; /* Garante alinhamento do texto mesmo em boxes largos */
}

.tore-pdf-btn:hover,
.tore-pdf-btn:focus {
  background: #a2519a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(162, 81, 154, 0.18);
  text-decoration: none;
}

.tore-pdf-btn:hover i,
.tore-pdf-btn:focus i {
  color: #692963;
  transform: scale(1.15) rotate(-7deg);
}

.tore-pdf-btn-disabled,
.tore-pdf-btn[aria-disabled="true"] {
  background: #ccc !important;
  color: #888 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .tore-content-flex {
    flex-direction: column;
    gap: 1.3rem;
    margin-bottom: 2.5rem;
  }

  .tore-btn-wrap {
    flex: 1 1 100%;
    max-width: 100%;
    justify-content: center;
    min-width: unset;
    margin-top: 0.8rem;
  }

  .tore-pdf-btn {
    padding: 0.8rem 1.5rem; /* Botões menores em telas menores */
  }

  .tore-pdf-btn i {
    margin-right: 0.5em; /* Reduz o espaço entre ícone e texto */
    font-size: 1.2em; /* Ícone menor em telas pequenas */
  }
}