/* ================================================
   PAGINA PADRÃO — CSS
   ================================================ */

/* --- INFOBAR / BREADCRUMBS --- */

.infobar {
  width: 100%;
  background-color: #F9F9F9;
  padding: 18px 0 0 25px;
}

.mobile_margin_text {
  padding: 16px 0;
}

/* --- TÍTULOS DA PÁGINA --- */

h1.page-title {
  font-family: 'Quicksand-Bold', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.5px;
  color: #4c4c4c;
  margin-bottom: 20px;
}

h5.content-tts {
  font-family: 'Quicksand-Bold', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  color: #4c4c4c;
  line-height: 1;
  margin-bottom: 24px;
}

/* --- ÁREA DE CONTEÚDO --- */

.full_content_3 {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 48px 50px 50px;
  margin: 0 0 100px 100px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.content_page {
  min-height: 450px;
  background-color: #ffffff;
}

.left_column {
  min-height: 100%;
}

.content-tts {
  color: #4c4c4c;
  font-size: 15px;
  line-height: 1.7;
}

/* --- IMAGEM FLUTUANTE --- */

.image_fit {
  width: 40%;
  float: right;
  margin: 0 0 20px 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.image_fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- BOTÃO IMPRIMIR --- */

.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: 1.5px solid #3A81C0;
  color: #3A81C0;
  padding: 8px 20px;
  border-radius: 12px;
  font-family: 'Quicksand-Bold', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  margin-left: 100px;
}

.print-btn:hover {
  background-color: #3A81C0;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(58, 129, 192, 0.35);
}

.print-btn .hover { display: none; }
.print-btn:hover .hover { display: inline-block; }
.print-btn:hover .normal { display: none; }

/* --- PLAYER DE ÁUDIO --- */

.player {
  width: 25%;
  margin-left: 100px;
  margin-bottom: 8px;
}

.player__inner {
  background-color: #ffffff;
  border: 1.5px solid #3A81C0;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(58, 129, 192, 0.12);
  transition: box-shadow 0.25s ease;
}

.player__inner:hover {
  box-shadow: 0 4px 20px rgba(58, 129, 192, 0.22);
}

.player__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  padding: 0;
}

.player__btns:hover {
  background-color: rgba(58, 129, 192, 0.1);
  transform: scale(1.1);
}

.player__btns svg {
  display: block;
}

/* --- ANIMAÇÃO DE ÁUDIO --- */

.audio-effect {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  gap: 3px;
  --boxSize: 4px;
}

.audio-bar {
  width: var(--boxSize);
  height: 100%;
  background: linear-gradient(to top, #3A81C0, #7ab3e0);
  border-radius: 4px;
  transform: scaleY(0.4);
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.audio-bar.quiet  { animation-name: quiet; }
.audio-bar.normal { animation-name: normal; }
.audio-bar.loud   { animation-name: loud; }
.audio-bar.stopped { animation: none !important; opacity: 0.4; }

@keyframes quiet {
  25% { transform: scaleY(0.6); }
  50% { transform: scaleY(0.3); }
  75% { transform: scaleY(0.8); }
}

@keyframes normal {
  25% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
  75% { transform: scaleY(0.6); }
}

@keyframes loud {
  25% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
  75% { transform: scaleY(1.2); }
}

/* ================================================
   RESPONSIVO
   ================================================ */

@media (max-width: 1280px) {
  .full_content_3 {
    margin: 0 20px;
    padding: 32px 24px 40px;
    border-radius: 16px;
  }

  .player,
  .print-btn {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .full_content_3 {
    margin: 0 15px;
    padding: 24px 16px 32px;
    border-radius: 12px;
    box-shadow: none;
  }

  .player {
    width: calc(100% - 30px);
    margin-left: 15px;
  }

  .print-btn {
    margin-left: 15px;
  }

  .image_fit {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
}

@media (max-width: 576px) {
  h1.page-title {
    font-size: 32px;
  }

  .player__inner {
    padding: 8px 14px;
  }
}