/* =================== CUSTOM: Botões, animações, quote, disclaimer =================== */

/* Botão principal cheio (verde) */
.btn-primary {
  background-color: #13c93c !important;
  border-color: #13c93c !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #10b636 !important;
  border-color: #10b636 !important;
}

/* Botão vazado (outline) em verde – usado no "Learn More" */
.btn-outline-success {
  color: #13c93c !important;
  border: 2px solid #13c93c !important;
  background-color: transparent !important;
}
.btn-outline-success:hover,
.btn-outline-success:focus {
  background-color: #13c93c !important;
  color: #fff !important;
}

/* Pulso sutil para CTAs principais */
@keyframes cta-pulse {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0 rgba(19,201,60,0.45); }
  60%  { transform: scale(1.03);box-shadow: 0 0 0 12px rgba(19,201,60,0); }
  100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(19,201,60,0); }
}
.btn-cta {
  animation: cta-pulse 2.2s ease-in-out infinite;
  will-change: transform;
}
.btn-cta:hover { animation-play-state: paused; transform: translateY(-1px); }

/* Quote (faixa lateral azul) */
.quote {
  border-left: 4px solid #163a8d !important;
  font-size: 0.9rem;
  padding: 12px 16px;
  margin-bottom: 1rem;
}

/* Disclaimer menor e com cores pedidas */
#disclaimer-section {
  background-color: #41a4f5 !important;
  color: #434e5e !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
#disclaimer-section .section-heading {
  color: #434e5e !important;
  font-size: 0.9rem !important;
  margin-bottom: 4px !important;
}
#disclaimer-section p {
  color: #434e5e !important;
  font-size: 0.8rem !important;
  margin-bottom: 4px !important;
}
#audience-section {
  background-color: #ffffff;
}
#offer-section {
  background-color: #f8fafd !important;
}
/* efeito revelar ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* delays opcionais para itens em grade */
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }


/* =================================================================== */
