@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;
  font-family: Arial, sans-serif;
  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 */
blockquoteul 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 */
}

/*
blockquote{
  font-size: 0.8em;
  width:95%;
  margin:20px auto;
  color: #555555;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid #002447 ;
  line-height:1.6;
  position: relative;
  background:#EDEDED;
}

blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#002447;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

blockquote::after{
  content: '';
}

blockquote span{
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}*/
