body {
  background-color: #dfdfdf;
  padding-top: 150px;
  /* ajuste conforme altura da navbar */
}

.logo-img {
  height: 80px;
  width: auto;
}

.navbar {
  transition: transform 0.3s ease-in-out;
  z-index: 9999;

}

.navbar-hide {
  transform: translateY(-100%);
}

.navbar.bg-dark {
  background-color: #040024 !important;
}

.navbar-nav .nav-item:hover {
  background-color: #fa7900;
  border-radius: 5px;
  /* opcional, só se quiser as bordas arredondadas */
}

.navbar-nav .nav-item:hover .nav-link {
  color: #fff !important;
  /* para o texto ficar visível no fundo laranja */
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 8px 0 !important;
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .navbar-nav .nav-link i {
    margin-right: 8px;
  }

  .logo-img {
    height: 60px;
  }
}


/*EFEITOS DO SITE*/
/*EFEITOS DO SITE*/
/*EFEITOS DO SITE*/
.deslizando-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.deslizando-left.ativo {
  opacity: 1;
  transform: translateX(0);
}

.deslizando-bottom {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.deslizando-bottom.ativo {
  opacity: 1;
  transform: translateY(0);
}

.deslizando-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}

.deslizando-zoom.ativo {
  opacity: 1;
  transform: scale(1);
}

.imgbackground {
  background-image: url('../img/fundo.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.teste2 {
  background-image: linear-gradient(to bottom, #215cff9c, #00005f98) !important;
  border-radius: 500px;
}

.titulo-section {
  font-size: 28px;
  font-weight: 600;
  border-left: 6px solid #fa7900;
  padding-left: 16px;
  margin-bottom: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(250, 121, 0, 0.1);
}


#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

#cookie-banner button {
  margin-left: 10px;
  padding: 6px 12px;
  border: none;
  background: #4da3ff;
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}

/* ========== CHAT CHATMIX ========== */

/* Botão flutuante do Chatmix */
.chatmix-button {
    position: fixed;
    bottom: 100px;  /* ← acima do WhatsApp (que está em 20px) */
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa7900, #e06800); /* cor laranja da Netwave */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chatmix-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.chatmix-button i {
    font-size: 28px;
    color: white;
}

/* Badge de notificação */
.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Modal/Caixa de diálogo */
.chatmix-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1001;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatmix-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chatmix-header {
    background: linear-gradient(135deg, #fa7900, #e06800);
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatmix-header h5 {
    margin: 0;
    font-size: 16px;
}

.chatmix-header h5 i {
    margin-right: 8px;
}

.chatmix-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.chatmix-close:hover {
    opacity: 0.8;
}

.chatmix-body {
    flex: 1;
    background: #f5f5f5;
}

#chatmix-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsivo para mobile */
@media (max-width: 576px) {
    .chatmix-modal {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        height: 70vh;
        bottom: 80px;
    }
}


/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/