/* Estilo do hover para o botão primary */
button.btn.btn-primary:hover, .btn:not(.close):not(.mfp-close).btn-primary:hover, a.btn:not([href]):not([tabindex]).btn-primary:hover {
  background-color: #6A2525; /* Nova cor do fundo */
  border-color: #6A2525; /* Nova cor da borda */
}

/* Estilo do hover para o botão secondary */
button.btn.btn-secondary:hover, .btn:not(.close):not(.mfp-close).btn-secondary:hover, a.btn:not([href]):not([tabindex]).btn-secondary:hover {
  background-color: #8b7d6a; /* Nova cor do fundo */
  border-color: #8b7d6a; /* Nova cor da borda */
}

blockquote {
  font-style: italic;
  color: #7f7f7f; /* Você pode escolher uma cor que combine com o tema */
  border-left: 3px solid #893030; /* Cor da borda esquerda da citação */
  padding-left: 20px;
  margin: 20px 0;
}

#quotes-slider .flickity-slider .slide .quote-style {
  font-style: italic !important;
  color: #7f7f7f !important;
  border-left: 3px solid #893030 !important;
  padding-left: 20px !important;
  margin: 20px 0 !important;
  max-width: 80% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#quotes-slider .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px; /* Ajuste conforme necessário */
}

.invitation-section {
  background-color: #893030;
  padding: 40px 0; /* Adiciona preenchimento para espaçamento */
  border-radius: 5px; /* Arredondamento leve das bordas */
}

.invitation-section-secondary {
  background-color: #a15638;
  padding: 40px 0; /* Adiciona preenchimento para espaçamento */
  border-radius: 5px; /* Arredondamento leve das bordas */
}

.concepts-section {
  margin-top: 50px; /* Ajuste a margem conforme necessário */
}

.service-title {
  margin-bottom: 50px; /* Ajuste a margem conforme necessário */
}

.service-item {
  text-align: center;
  margin-bottom: 40px;
}

.service-item i {
  color: #a15638;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 16px;
}

@media only screen and (max-width: 991px) {
  #mainMenu.menu-animate a {
    color: #000; /* Cor preta para os links */
  }
  #mainMenu.menu-animate .special-link {
    color: #893030; /* Cor especial para o link de agendamento */
  }
}

.logo-mobile-menu-open .logo-default {
  display: none !important;
}
.logo-mobile-menu-open .logo-dark {
  display: block !important;
}

.blog-page #header .header-inner, .blog-page #header #header-wrap {
  background-color: #a15638; /* Altere para a cor desejada */
}

/* Adicionado para controlar a cor dos links do menu */
.home-page.scrolled #mainMenu nav > ul > li > a {
  color: #000; /* Cor preta para os links */
}
.home-page.scrolled #mainMenu nav > ul > li > a.special-link {
  color: #893030; /* Cor especial para o link de agendamento */
}

/* Para telas grandes (por exemplo, desktop) */
.post-image img {
  max-width: 525px; /* Limita a largura da imagem */
  height: auto; /* Mantém a proporção da imagem */
  margin: 0 auto;
}

/* Para telas médias (por exemplo, tablets) */
@media only screen and (max-width: 991px) {
  .post-image img {
    max-width: 400px; /* Reduz a largura da imagem para telas médias */
  }
}

/* Para telas pequenas (por exemplo, celulares) */
@media only screen and (max-width: 576px) {
  .post-image img {
    max-width: 100%; /* Ajusta a imagem para a largura total da tela em dispositivos pequenos */
  }
}

/* Ajustes no WhatsApp Chat para dispositivos móveis */
@media only screen and (max-width: 576px) {
  #whatsapp-chat {
      width: 250px;
      bottom: 10px;
      right: 10px;
  }

  #whatsapp-chat .text-white {
      font-size: 14px; /* Reduz o tamanho do título do widget */
  }

  #whatsapp-chat textarea {
      height: 60px; /* Ajusta a altura da área de texto */
  }

  #whatsapp-chat .p-2 {
      padding: 5px !important; /* Reduz o espaçamento interno */
  }

  #whatsapp-chat .p-2.text-right {
      padding-bottom: 10px !important; /* Espaçamento um pouco maior para o botão enviar */
  }

  #whatsapp-chat .d-flex img {
      width: 30px;
      height: 30px;
      margin-right: 5px;
  }

  #whatsapp-chat .d-flex .rounded {
      max-width: 70%;
  }
}

/* WhatsApp Reopen Button Styles */
#reopen-chat {
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

/* WhatsApp Chat Widget Animation */
#whatsapp-chat {
  transition: all 0.3s;
}
#whatsapp-chat.minimized {
  opacity: 0;
  transform: scale(0.5) translate(100px, 100px);
  pointer-events: none; 
}

#send-message i {
  margin-right: 5px;
}

/* Estilo para o widget de notificação do WhatsApp */
#whatsapp-notification {
  display: none; /* O widget de notificação estará oculto por padrão */
}

@media only screen and (max-width: 576px) {
  #whatsapp-chat {
    display: none; /* O widget de chat estará oculto por padrão em dispositivos móveis */
  }
  
  
  #whatsapp-notification {
    display: block; /* O widget de notificação será exibido em dispositivos móveis */
    width: 270px !important;
  }

  #whatsapp-notification .d-flex {
    margin-bottom: 5px; /* Adiciona margem abaixo da área contendo foto, ícone e badge */
  }

  #whatsapp-notification .text-white {
    line-height: 1.2; /* Ajusta o espaçamento entre as linhas para o título da notificação */
  }

  .whatsapp-icon-container {
    position: relative;
    display: inline-block;
    animation: pulse 1.5s infinite;
    margin-right: 15px;
  }
  
  .whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 10px;
    line-height: 1;
    min-width: 15px;
    text-align: center;
  }

  #whatsapp-notification .ml-2 {
    margin-left: 5px !important; /* Reduz a margem esquerda do texto da notificação */
  }

  /* Estilo para a mensagem da notificação */
  #whatsapp-notification .d-flex,
  #whatsapp-notification .bg-dark {
      margin-bottom: 0 !important;
      margin-top: 0 !important;
  }

  #whatsapp-notification .bg-dark {
    background-color: white !important;
    color: black !important;
    border-radius: 0 0 5px 5px; /* Arredondamento apenas na parte inferior para se conectar ao topo */
    line-height: 1.2;
  }

  /* Alteração de cor para o ícone do WhatsApp no widget de notificação */
  #whatsapp-notification .fab.fa-whatsapp {
    color: white;
  }

  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
}