/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v18-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v37-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: "Inter", sans-serif;
  color: #2C3539;
}

h1{  
  font-family: "Playfair Display", "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;  
  line-height: 1.2;
}

h2 {
  font-family: "Playfair Display", "Inter", sans-serif;  
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

a{
  text-decoration: none;
}

.datapublicacao{  
  font-weight: 400;
  font-size: 12px;       
}

.img-padrao{
  border-radius: 5px;
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  p {
    font-size: 1.1rem;
    line-height: 1.5;
  }  
}

@media (min-width: 992px) {
  h1 {
    font-size: 3rem;
    line-height: 1.3;
  }

  p {
    font-size: 1.25rem;
    line-height: 1.5;
  } 
}

.container-lg{
  max-width: 1080px;
}

@media (min-width: 1024px) {
  .container {
    max-width: 864px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
}

/* Headline Section */
.headline-section {
  background-image: url(../images/banner.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex; /* Para centralizar conteúdo */
  align-items: center; /* Centralização vertical */
  justify-content: center; /* Centralização horizontal */
}

@media (max-width: 768px) {
  .headline-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

@media (min-width: 992px) {
  .headline-section {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}

/* Marcação de texto */
@keyframes highlight {
  to {
      background-position: 0;
  }
}
mark {
  animation: highlight linear forwards;
  animation-timeline: view(94% 2%);
  background: linear-gradient(
      to right,      
      oklch(0.92 0.10 84.89 / 1) 50%, /* Tom mais sutil */
      oklch(0.92 0.10 84.89 / 0) 50%
  );
  background-position: 100%;
  background-size: 200% 100%;
  border-radius: 0.125rem;
  padding-inline: 0.125rem;
}
/* Fim Marcação de texto */

/* Backgrounds */
.bg-raiva,
.bg-marfim {
  background-color: #fdfbf2 !important;
}
.bg-medo{
  background-color: #ebf9e9 !important;
}
.bg-solidao{
  background-color: #e6f4fa !important;
}
.bg-culpa{
  background-color: #f4effb !important;
}
.bg-tristeza{
  background-color: #fde9e4 !important;
}
.bg-ansiedade{
  background-color: #fdeaf3 !important;
}
.bg-rodape {
  background-color: #2b3445;
}
/* Fim Backgrounds */

/* Mecanico Solução */
.sentimento-card-title {
  font-weight: 700;
  margin: 0 !important; /* Remove todas as margens */
  padding: 0; /* Remove qualquer padding */     
}
/* Fim Mecanico Solução */

.fsz {
  font-size: 14px;
}

.text-mute {
  color: rgba(255, 255, 255, 0.6);
}

.btnZap {    
  font-weight: 700;    
  margin: 0 auto; 
  width: fit-content;  
  align-items: center; 
  justify-content: center;  
  background-color: #009d43;
  border: none;
  border-radius: 10px;    
  padding: 15px 20px;
  box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
  min-height: 48px;   
}

/* Definição da animação de pulsar */
@keyframes pulse {
  0%, 100% {
      transform: scale(1.02);
  }
  50% {
      transform: scale(0.98);
  }
}

/* Botões de Compartilhamento */
.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 20px;
}
.share-button {
  background-color: #e6e2d8;
  border: none;
  border-radius: 10px;
  flex-grow: 1;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;        
  transition: background-color 0.3s;
  position: relative;
}    
.share-button i {
  margin-right: 8px;
}
/* Facebook */
.share-button.facebook {
  font-size: 18px;
  position: relative;
}
.share-button.facebook:hover {                
  background-color: #0866ff;
}    
.share-button.facebook:hover i {
  color: #0866ff;
}
.share-button.facebook i {
  color: white;
  position: relative;
  z-index: 1;
  margin-left: 7px; /* Ajuste esta margem para centralizar o ícone */
  margin-top: 6px;
}
.share-button.facebook::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-color: #0866ff; /* Cor do círculo */
  border-radius: 50%;
  z-index: 0;
}
.share-button.facebook:hover::before {
  background-color: white; /* Cor do círculo no hover */
}    
/* WhatsApp */
.share-button.whatsapp i {
  color: #15cc5a;
  font-size: 26px;
  margin-right: 0; /* Remova o espaçamento lateral genérico */
  margin-left: 0px; /* Ajuste fino para centralizar */
}
.share-button.whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;  
}
.share-button.whatsapp:hover {
  background-color: #15cc5a;        
}    
.share-button.whatsapp:hover i {
  color: white;
}    
/* Default */
.share-button.default{
  font-size: 22px;
}    
.share-button.default:hover {
  background-color: #4f5257;
  color: white; 
}
.share-button.default svg {
  width: 20px;
  height: 20px;
  fill: #4f5257;
}
.share-button.default:hover svg {
  fill: white;
}    
/* Fim Compartilhamento */

/* Pricing */
section.pricing {
  background: #f5e8d7;
  background: linear-gradient(to right, #f8ecd9, #e8d3b8);
}

.pricing .card {
  border: none;
  border-radius: 1rem;
  transition: all 0.2s;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing hr {
  margin: 1rem 0;
}

.pricing .card-title {  
  margin: 0.5rem 0;
  font-size: 0.9rem;
  letter-spacing: .1rem;
  font-weight: 700;    
  color: rgba(255, 255, 255, 0.6);
}

.pricing .card-price {
  font-size: 3rem;  
  margin: 0;
  line-height: 1; /* Remove espaço extra entre linhas */
}

.pricing .card-price .installments {
  font-size: 1.2rem;
}

.pricing .card-price .value {    
  font-size: 3rem; 
  margin: 0;
  line-height: 1; 
  display: inline-block; /* Garante que o alinhamento funcione bem com os centavos */
}

.pricing .card-price .cents {
  font-size: 1.5rem; /* Tamanho menor para os centavos */
  vertical-align: super; /* Alinha acima da linha base */
  margin-left: 0.1rem; /* Espaçamento opcional entre o número e os centavos */
}

.smallcents {
  font-size: 0.7em; /* Deixa os centavos menores */
  vertical-align: baseline; /* Alinha com a base do texto principal */
  position: relative; /* Permite ajustes adicionais */
  top: -0.4em; /* Eleva os centavos ligeiramente acima, sem exageros */
  margin-left: 0.15rem; /* Pequeno espaçamento após a vírgula */
}

.pricing ul li {
  margin: 0rem;
}

.pricing .fa-ul {  
  margin: 10px; /* Remove a margem externa */
  width: 100%; /* Garante que a lista ocupe toda a largura disponível */
}

.pricing .fa-ul li {
  display: flex; /* Para alinhar o ícone e o texto horizontalmente */
  align-items: center; /* Centraliza os elementos verticalmente */
  white-space: nowrap; /* Evita que o texto quebre a linha */
  overflow: hidden; /* Oculta qualquer excesso de texto */
  text-overflow: ellipsis; /* Adiciona reticências caso o texto seja muito longo */
  margin-bottom: 0.5rem; /* Espaçamento uniforme entre os itens */
}

.pricing .text-muted {
  opacity: 0.7;
}

/* Hover Effects on Card */
@media (min-width: 992px) {
  .pricing .card:hover {
    margin-top: -.25rem;
    margin-bottom: .25rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
  }

  .pricing .card:hover .btn {
    opacity: 1;
  }
}
/* Fim Pricing */

/* Rodapé */
.lnk-politicas{
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.copy-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

footer a:hover {
  color: #fff !important;
}

.hr-light {
  background-color: white !important;
  height: 1px;
  border: none; /* Remove a borda padrão do <hr> */
  margin-top: 20px;
}

/* Estilos para ícones de formas de pagamento crédito do rodapé */
.formapagamento-icon { 
  background-color: white;
  border-style: solid;
  border-width: 1px;
  border-color: #3c4759; /* Cor ajustada para suavizar a transição */
  border-radius: 5px;
  margin-left: 5px;
  margin-top: 8px;
}
/* Estilo específico para o ícone de Boleto */
.formapagamento-icon[title="Boleto"] { 
  padding: 3px; /* Adiciona o espaçamento interno apenas ao ícone de Boleto */
}

/* Estilo específico para o ícone de Boleto */
.formapagamento-icon[title="Pix"] { 
  padding: 2px; 
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #f8f9fa !important; 
  width: 40px;
  height: 30px;
  margin-left: 5px;
  margin-top: 8px;  
}

/* Estoque */
.stock-status {
  border: 2px solid #ffc107; /* Borda que combina com o tema */
  border-radius: 10px; /* Cantos arredondados */
  padding: 8px 16px; /* Espaçamento interno */
  background-color: #fffbea; /* Fundo leve para destaque */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}
.progress {
  height: 25px; /* Altura mais proeminente */  
  overflow: hidden; /* Garante que a borda da barra de progresso fique correta */
}
.progress-bar {
  display: flex;
  align-items: center; /* Centraliza o texto verticalmente */
  justify-content: center; /* Centraliza o texto horizontalmente */
  font-weight: bold; /* Deixa o texto da barra em destaque */
  font-size: 14px; /* Tamanho do texto dentro da barra */    
}
.text-danger {
  color: #dc3545; /* Tom vermelho profissional */
}
.progress-text {
  color: #000; /* Contraste forte para leitura */
  z-index: 2; /* Garante que o texto esteja acima da barra */
}
.text-muted {
  font-size: 14px; /* Texto menor para detalhes adicionais */
}
.live-indicator-wrapper {
  position: relative; /* Posicionamento relativo para controlar o beacon */
  width: 16px;
  height: 16px;
}
.live-indicator {
  width: 12px;
  height: 12px;
  background-color: #28a745; /* Verde profissional */
  border-radius: 50%; /* Torna a bolinha circular */
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 2; /* Bolinha principal acima do beacon */
  animation: blink 1s infinite; /* Animação de piscar */
}

.live-beacon {
  width: 16px;
  height: 16px;
  background-color: rgba(40, 167, 69, 0.4); /* Cor verde com transparência */
  border-radius: 50%; /* Torna o beacon circular */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Abaixo da bolinha principal */
  animation: beacon-effect 1.5s infinite; /* Efeito de expansão */
}

/* Animação de piscar */
@keyframes blink {
  0%, 50% {
    opacity: 1; /* Totalmente visível */
  }
  100% {
    opacity: 0; /* Invisível */
  }
}

/* Animação do beacon */
@keyframes beacon-effect {
  0% {
    transform: scale(1); /* Tamanho inicial */
    opacity: 0.5; /* Semitransparente */
  }
  100% {
    transform: scale(2.5); /* Expande o aro */
    opacity: 0; /* Desaparece */
  }
}
/* Fim Estoque */

/* Botao Dourado */						
.btn-gold {
  background-color: #f1a208; /* Cor principal */
  color: #ffffff; /* Cor do texto */
  border: none; /* Remove a borda padrão */
  border-radius: 5px; /* Cantos arredondados */
  padding: 12px 24px; /* Espaçamento interno */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra sutil */
  font-family: 'Inter', sans-serif; /* Fonte elegante */
  font-size: 16px; /* Tamanho do texto */
  font-weight: 700; /* Peso da fonte */
  cursor: pointer; /* Mostra que é clicável */
  text-decoration: none; /* Remove sublinhado em links */
  display: inline-flex; /* Para centralizar conteúdo interno */
  align-items: center; /* Centraliza verticalmente o texto e ícone */
  justify-content: center; /* Centraliza horizontalmente */
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s; /* Transições suaves */
  animation: pulse 2s infinite; /* Adiciona a animação de pulsar */
}

.btn-gold:hover {
  background-color: #c27c06; /* Cor ao passar o mouse */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Aumenta a sombra */
  transform: translateY(-2px); /* Efeito de elevação */
}

.btn-gold:active {
  background-color: #a56704; /* Cor ao clicar */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra reduzida */
  transform: translateY(0); /* Remove elevação */
}

/* Card Versiculo */
.verse-card {
  background: #f8f3e6; /* Fundo com tom de papel antigo */
  border: 1px solid #d4c4a8; /* Borda sutil */
  border-radius: 10px; /* Bordas arredondadas */
  padding: 20px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(0, 0, 0, 0.05); /* Sombras para profundidade */  
  max-width: 700px;
  margin: 20px auto;
}
.verse-text {
	font-family: "Playfair Display", "Inter", sans-serif;
  	font-size: 1.15rem;
  	line-height: 1.5;
}
.quote-icon {
  color: #d4c4a8 !important;
}
.blockquote-footer {
  font-size: 0.8rem; 
  line-height: 1;
}
/* Fim card versiculos */

/* Avaliações */
.bsb-blockquote-icon {
  --bsb-blockquote-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-quote'%3E%3Cpath d='M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 9 7.558V11a1 1 0 0 0 1 1h2Zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 3 7.558V11a1 1 0 0 0 1 1h2Z'/%3E%3C/svg%3E");
  --bsb-blockquote-icon-opacity: 0.075;
  position: relative;
  z-index: 1;
}
.bsb-blockquote-icon:before {
  background-image: var(--bsb-blockquote-icon);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 64px;
  left: -1rem;
  opacity: var(--bsb-blockquote-icon-opacity);
  position: absolute;
  top: -1rem;
  width: 64px;
  z-index: -1;
}
.bsb-ratings {
  --bsb-star-off: #ddd
}

.bsb-ratings[data-bsb-star="1"]:before {
  content: "★"
}

.bsb-ratings[data-bsb-star="2"]:before {
  content: "★★"
}

.bsb-ratings[data-bsb-star="3"]:before {
  content: "★★★"
}

.bsb-ratings[data-bsb-star="4"]:before {
  content: "★★★★"
}

.bsb-ratings[data-bsb-star="5"]:before {
  content: "★★★★★"
}

.bsb-ratings[data-bsb-star-off="1"]:after {
  color: var(--bsb-star-off);
  content: "★"
}

.bsb-ratings[data-bsb-star-off="2"]:after {
  color: var(--bsb-star-off);
  content: "★★"
}

.bsb-ratings[data-bsb-star-off="3"]:after {
  color: var(--bsb-star-off);
  content: "★★★"
}

.bsb-ratings[data-bsb-star-off="4"]:after {
  color: var(--bsb-star-off);
  content: "★★★★"
}

.bsb-ratings[data-bsb-star-off="5"]:after {
  color: var(--bsb-star-off);
  content: "★★★★★"
}
/* Fim Avaliações */

/* Ribbon desconto */
.wrap {
  width: 100%;
  height: 188px;
  position: absolute;
  top: -8px;
  left: 8px;
  overflow: hidden;
}
.wrap:before, .wrap:after {
  content: ""; 
  position: absolute;
}
.wrap:before {
  width: 40px;
  height: 8px;
  right: 100px;
  background: #4D6530;
  border-radius: 8px 8px 0px 0px;
}
.wrap:after {
  width: 8px;
  height: 40px;
  right: 0px;
  top: 100px;
  background: #4D6530;
  border-radius: 0px 8px 8px 0px;
}
.ribbon {
  font-weight: 700;
  width: 200px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  top: 30px;
  right: -50px;
  z-index: 2;
  overflow: hidden;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px dashed #2C3539;
  box-shadow:0 0 0 3px #57DD43,  0px 21px 5px -18px rgba(0,0,0,0.6);
  background: #57DD43;
  text-align: center;
}
/* Fim Ribbon desconto */