body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}
  
  @keyframes L-coreBorderAnimation {
    0% {
      border-bottom-color: rgba(64, 158, 255, 0.5)
    }
    100% {
      border-bottom-color: rgba(64, 158, 255, 1)
    }
  }

  .ab-iam-root {
      z-index: 99999999999999999999 !important;
  }
  


  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: none;
    border-radius: 8px;
    background: rgb(255, 255, 255);
    font-size: .875rem;
    font-weight: 500;  
  }


  /* Estilo quando o dropdown está ativo */
  .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  /* Estilo para submenus */
  .dropdown-menu .dropdown-menu {
      transform: translateX(-10px);
      margin-left: 0.7rem;
      margin-right: 0.7rem;
      margin-top: -0.5rem;
  }

  /* Estilo para submenus quando ativos */
  .dropdown-menu .dropdown-menu.show {
      transform: translateX(0);
  }

 /* Estilo para itens do dropdown */
.dropdown-item {
padding: 0.7rem 1.2rem;  
transition: all 0.2s ease;
position: relative;
font-size: .875rem; 
font-weight: 500;   
color: #0d6efd;
}

  /* Hover effect nos itens */
  .dropdown-item:hover {
      background: rgba(2, 18, 43, 0.767);
      padding-left: 1.4rem;
  }

  /* Estilo para o toggle do dropdown */
  .dropdown-toggle::after {
      transition: transform 0.2s ease;
  }

  /* Rotação da seta quando ativo */
  .dropdown-toggle.show::after {
      transform: rotate(180deg);
  }

  /* Seta para submenus */
  .dropdown-menu .dropdown-toggle::after {
      transform: rotate(-90deg);
  }

  /* Efeito de hover mais suave */
  .dropdown-item:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: #0d6efd;
      transform: scaleY(0);
      transition: transform 0.2s ease;
  }

  .dropdown-item:hover:before {
      transform: scaleY(1);
  }

  /* Estilo para ícones nos itens */
  .dropdown-item i {
      margin-right: 8px;
      opacity: 0.7;
      transition: opacity 0.2s ease;
  }

  .dropdown-item:hover i {
      opacity: 1;
  }

  /* Backdrop com blur quando dropdown está ativo */
  .dropdown.show::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(2px);
      pointer-events: none;
      z-index: -1;
      opacity: 0;
      animation: fadeIn 0.3s ease forwards;
  }
  .dropdown-toggle .bi-chevron-right {
    transition: transform 0.3s ease; 
  }
  
  .dropdown-toggle[aria-expanded="false"] .bi-chevron-right {
    transform: rotate(90deg); 
  }
  @keyframes fadeIn {
      to {
          opacity: 1;
      }
  }
  .dropdown-toggle::after { display: none; }
  /* Estilo para whatsapp icon */
  .whatsapp-float {
    position: fixed;
      bottom: 20px;
      right: 20px;
      float: right;
      z-index: 1000;
      display: block;
      width: 50px;
      height: 50px;
      background-color: #25D366;
      color: #fff;
      font-size: 24px;
      text-align: center;
      line-height: 50px;
      border-radius: 50%;
      transition: background-color 0.3s ease;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .whatsapp-float:hover {
        transform: scale(1.1);
    }
  .whatsapp-icon a:hover {
    background-color: #128C7E;
    text-decoration: none;
  }
  ul.list-group li strong {
color: #0d6efd;
margin-left: 0.5rem;
margin-right: 0.5rem;
}

h1.h2 {
font-size: 2rem;
font-weight: 700;
color: #343a40;
}


@media (max-width: 768px) {
h1.h2 {
font-size: 1.75rem;
}
}

h4 {
font-size: 1.5rem;
font-weight: 600;
color: #0d6efd;
margin-top: 1.5rem;
}

@media (max-width: 768px) {
h4 {
font-size: 1.25rem;
}
}

p {
text-align: justify;
font-size: 1rem; 
line-height: 1.6;
}

@media (max-width: 576px) {
p {
font-size: 0.9rem;
text-align: left;
}
}
/* Estilos do Preloader */
#preloader {
position: fixed;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff, #f0f2f5);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
text-align: center;
}

.preloader-icon {
font-size: 3.5rem;
color: #0d6efd;
animation: pulse 1.5s infinite ease-in-out;
}

.preloader-text {
font-size: 1.2rem;
font-weight: 600;
color: #343a40;
margin-top: 10px;
opacity: 0;
animation: fadeIn 2s infinite alternate;
}

/* Animações */
@keyframes pulse {
0% { transform: scale(1); opacity: 0.7; }
50% { transform: scale(1.2); opacity: 1; }
100% { transform: scale(1); opacity: 0.7; }
}

@keyframes fadeIn {
0% { opacity: 0.5; }
100% { opacity: 1; }
}

/* Ocultar preloader após carregamento */
.loaded #preloader {
opacity: 0;
visibility: hidden;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

 
  .bd-mode-toggle {
    z-index: 1500;
  }

  .bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
  }

  p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 2rem;
}

ul.list-group {
    padding: 0;
    margin-top: 1.5rem;
}

ul.list-group li {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    color: #495057;
}

ul.list-group li i {
    color: #0d6efd;
    font-size: 1.5rem;
    margin-right: 1rem;
}
.list-group-item::before {
  content: "•";
  font-size: 1.5rem;
  color: #0d6efd;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.alert-info {
    background-color: #eaf4fc;
    border-color: #c5e3f7;
    color: #0d6efd;
    font-weight: bold;
}

/* Additional Styles */
.container h2 {
    color: #198754;
}

.list-group-item strong {
    color: #212529;
    margin-right:10px;
}
.list-group-item i{
    margin-top: -20px;
}
.list-group-item ul {
    margin-left: 1.5rem;
    list-style-type: disc;
}
.list-group-item strong {
  color: #0d6efd;
}

.list-group-item:hover {
  background-color: #e9ecef;
}
.note {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.list-group-item {
  font-size: 1.125rem;
  color: #495057;
  padding: 1.25rem;
  border: 1px solid #dee2e6;
  margin-bottom: 0.75rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.list-group-item:hover {
  background-color: #e9ecef;
  transform: translateX(4px);
}

.card-custom {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}