/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 24 2025 | 21:07:04 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
.texto-limitado {
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.link_white, .link_white a {
	color: #ffffff !important;
}
/* Wrapper que será animado (slide) */
.texto-limitado .conteudo-wrapper {
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.2,.9,.2,1), opacity 0.35s ease;
  will-change: max-height, opacity;
}

/* Elemento do conteúdo (mantém HTML interno) */
.texto-limitado .conteudo {
  padding: 0; /* ajuste se quiser espaçamento */
}

/* Botão/link de toggle */
.texto-limitado .toggle-btn {
  display: inline-block;
  margin-top: 0px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: bold;
  user-select: none;
  color: #ffffff;
  transition: color 0.2s ease, transform 0.12s ease;
}
.texto-limitado .toggle-btn:hover {
  color: #0056b3;
  transform: translateY(-1px);
}

/* Classe auxiliar para estado (pode ser usada para estilos extras) */
.texto-limitado.expanded .toggle-btn::after {
  content: "";
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.3s ease;
}
.site-header.hide {
  transform: translateY(-100%);
}
.site-header.show {
  transform: translateY(0);
}

.link_blue {
	color: #5378a4 !important;
}
.rotating {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}