
/* Variável CSS global para fonte do site */
:root {
  --font-family-base: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Aplicar fonte em todo o site */
body, 
body * {
  font-family: var(--font-family-base) !important;
}

/* ============================================ */
/* Estilos originais do my-custom-styles.css   */
/* ============================================ */

@view-transition {
  navigation: auto;
}
@keyframes zoom-out-fade {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.5;
    transform: scale(0.95);
  }
}
@keyframes slide-in-right-to-left {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
::view-transition-old(root) {
  animation-name: zoom-out-fade;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}
::view-transition-new(root) {
  animation-name: slide-in-right-to-left;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
}

.btn-whats {
  position: fixed;
  bottom: 55px;
  right: 30px;
  z-index: 999999;
  text-align: right;
}
.btn-whats img {
  box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
  animation: pulse 2s infinite;
}
@media (max-width: 767px) {
  .btn-whats {
    width: 200px;
    bottom: 35px;
    right: 35%;
    text-align: right;
  }
  .btn-whats img {
    max-width: 100%;
  }
}
.rodape ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
}
.rodape li {
  margin: 0;
}
.rodape li a {
  display: block;
  color: #fff;
  text-decoration: none;
  width: 100%;
}
.breadcrumb {
  font-size: 12px;
}
body {
  font-size: 20px !important;
  line-height: 1.7 !important;
}
:target:before {
  content: "";
  display: block;
  height: 85px; /* fixed header height*/
  margin: -85px 0 0; /* negative fixed header height */
}

.card-img-top {
  transition: transform 0.4s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Estilo do contêiner do índice */
blockquote {
  background: linear-gradient(
    135deg,
    #fff,
    #f9f9f9
  ); /*#fff;*/ /* Cor de fundo suave */
  border: 2px solid #f9f9f9;
  padding: 20px;
  margin: 16px 0;
  border-radius: 6px;
  color: #000; /* Cor do texto */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); /* Sombra leve */

  position: relative; /* Necessário para o desenho */
  overflow: hidden; /* Esconde o excesso das formas decorativas */
}

/* Estilo do título do índice */
blockquote h2 {
  font-size: 0.8rem;
  margin-bottom: 4px;
  color: #0056b3; /* Azul para destacar o título */
}

/* Estilo da lista */
blockquote ul {
  list-style: disc inside; /* Marcadores alinhados dentro do texto */
  padding: 0;
  margin: 0;
}

/* Estilo dos links */
blockquote ul li a {
  text-decoration: none;
  color: #333; /* Azul dos links */
  transition: color 0.3s ease; /* Animação para hover */
}

blockquote ul li a:hover {
  text-decoration: none;
  color: #0056b3; /* Cor de destaque no hover */
}

/* Estilo geral dos itens da lista */
blockquote ul li {
  margin: 8px 0; /* Espaçamento entre os itens */
  line-height: 1.5; /* Melhor legibilidade */
}

/* Accordion com fundo branco */
.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #212529;
}
.accordion-button:hover {
    background-color: #ffffff;
}
.accordion-button:focus {
    background-color: #ffffff;
}
