#mainNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Certifique-se de que o navbar fique acima de outros elementos */
}

@keyframes vibrate {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  30% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 2px); }
  70% { transform: translate(2px, -2px); }
  100% { transform: translate(0, 0); }
}

.whatsapp-icon {
  font-size: 48px; /* Ajuste conforme necessário */
  color: #25D366; /* Cor do WhatsApp */
  animation: vibrate 0.8s infinite;
  cursor: pointer;
}


.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

/* Estilos para o navbar */
/* Estilos para a barra de navegação */
.navbar {
  background: #f8fcff;
  margin-bottom: -56px;
  color: #ffffff;
}

/* Estilos para o botão toggle */
.navbar-toggler {
  background-color: white;
  border: px solid #F6C350 !important;
  /* Altere para uma borda amarela */
}

/* Estilos para o ícone do botão toggle */
.navbar-toggler-icon {
  color: #F6C350;
}

/* Estilos para a barra de navegação de cor clara */
.navbar-light {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F6C350' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: #F6C350;
}

/* Estilos para a seção */
.section-background {
  background: #0089FF;
  margin-top: -7px;
  padding-top: 0px;
  margin-bottom: -77px;
  color: #ffffff;
}

/* Estilos para o texto centralizado */
.center-h3 {
  text-align: center;
}

nav ul li a {
  font-size: 15px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  /* Define uma borda transparente */
  transition: border-bottom 0.3s;
  /* Adiciona uma transição suave para a borda */

}

nav ul li a.active {
  border-bottom: 3px solid #F6C350;
  /* Adiciona uma borda amarela ao item ativo */
  font-size: 15px;
  font-weight: bold;
}
nav ul li a:hover {
  border-bottom: 3px solid #F6C350;
  /* Adiciona uma borda amarela ao item ativo */
  font-size: 15px;
  font-weight: bold;
}

.logo-pincodes {
  width: 165px;  /* Ajuste o tamanho da imagem conforme necessário */
  height: auto;  /* Mantém a proporção original */
  display: block;  
  object-fit: contain;  /* Evita cortes na imagem */
}

.navbar {
  background-color: #0089FF !important; /* Cor inicial */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  padding: 8px 0 !important; /* Diminui a altura da navbar */
  height: 60px; /* Define uma altura menor */
}

.navbar .nav-link, .navbar .navbar-brand {
  color: white !important; /* Texto branco quando azul */
  transition: color 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: white !important; /* Cor ao rolar */
}

.navbar.scrolled .nav-link, .navbar.scrolled .navbar-brand {
  color: #0089FF !important; /* Texto azul quando fundo branco */
}



.image {
  width: 100%;  /* Ou um valor fixo, como 300px */
  height: 400px; /* Defina uma altura fixa */
  object-fit: cover; /* Isso vai garantir que a imagem preencha o espaço sem distorcer */
}

.image-text-box {
  background-color: #007EEA; /* Cor de fundo */
  color: white; /* Cor do texto */
  padding: 10px 30px; /* Espaçamento mais controlado, sem espaçamento excessivo */
  text-align: center; /* Centraliza o texto horizontalmente */
  margin-top: 35px; /* Espaço entre a imagem e a caixa de texto */
  display: flex; /* Layout flexbox */
  align-items: flex-start; /* Alinha o texto mais para o topo */
  justify-content: center; /* Centraliza o conteúdo horizontalmente */
  width: 415px;
  height: 270px;
  border-radius: 18px;
  opacity: 1; /* Garantir visibilidade da caixa */
}


/* Efeito ao passar o mouse */
.image-text-box:hover {
  transform: scale(1.05); /* Aumenta levemente o tamanho */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Adiciona sombra */
}

/* Animação no texto */
.image-text-box p {
  transition: color 0.3s ease-in-out;
}

.clean-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.row {
  justify-content: center;
}



.collapse .navbar-nav .nav-item a {
  color: #0089FF;
  font-size: 16px;
  font-weight: bold;
}

/* Estilos para o botão */
.btn-outline-light {
  width: 286px;
  height: 75px;
  border-radius: 10px;
  border: 1px solid #ffffff; /* Cor branca no contorno */
  background: linear-gradient(90deg, #0089FF 0%, #0F3DD3 100%);
  
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Efeito hover */
.btn-outline-light:hover {
  background: #0089FF;
  border-color: #f8f9fa;
  transform: scale(1.05);
}



.item {
  margin-top: -20px;
  /* Ajuste o valor  */
  margin-bottom: 10px;
  /* Ajuste o valor */
}

.card-style {
  margin: 8px;
}

.card-style .bg-primary {
  background-color: #0089FF;
  border-radius: 8px;
}

.card-style h5 {
  font-size: 18px;
  color: #fff;
}





/* Estilo para a seção com fundo azul */
.custom-section {
  height: 132px;
  background: #0089FF;
  margin-top: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo para o parágrafo de texto */
.custom-text {
  font-size: 40px;
  font-family: Roboto, sans-serif;
  color: #f5f5f9;
  text-align: center;
}



/* Navbar antes de rolar (fundo azul) */
.navbar {
  background: rgb(0, 137, 255); /* Azul padrão */
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Navbar ao rolar (fundo branco) */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important; /* Branco */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

/* Mantém a visibilidade dos links ao mudar de cor */
.navbar .nav-link {
  color: #fff !important; /* Branco no fundo azul */
  transition: color 0.3s ease-in-out;
}

.navbar.scrolled .nav-link {
  color: #0089FF !important; /* Preto no fundo branco */
}

/* Ajuste da logo ao rolar */
.navbar.scrolled .navbar-brand img {
  max-height: 165px !important;
  transition: all 0.3s ease-in-out;
}


/* Estilos do Footer */
.footer {
  background-color: #f8f9fa; /* Cor de fundo suave */
  padding: 40px 0; /* Espaçamento interno */
  color: var(--bs-emphasis-color); /* Cor do texto */
  font-family: 'Roboto', sans-serif;
}

.footer .container {
  max-width: 1200px; /* Largura máxima para o container */
}

.footer .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .col-md-3,
.footer .col-md-4 {
  padding: 15px; /* Espaçamento entre colunas */
}

/* Logo */
.footer img {
  max-width: 150px;
  display: block;
  margin: 0 auto;
}

/* Títulos */
.footer h4 {
  font-size: 18px;
  font-weight: bold;
  color: var(--bs-emphasis-color);
  margin-bottom: 10px;
}

/* Links */
.footer a {
  color: var(--bs-emphasis-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
  color: #00a2ff; /* Mudança de cor ao passar o mouse */
  transform: scale(1.05); /* Efeito de zoom */
}

/* Lista de links */
.footer ul {
  list-style-type: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: var(--bs-emphasis-color);
  font-size: 14px;
}

.footer ul li a:hover {
  color: #00a2ff;
}

/* Informações de Contato */
.footer .col-md-4 p {
  font-size: 14px;
  color: var(--bs-emphasis-color);
  margin-bottom: 8px;
}

/* Copyright */
.footer-copyright {
  background-color: #0089FF; /* Cor de fundo do copyright */
  padding: 100px;
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-family: 'Roboto', sans-serif;
}

.footer-copyright p {
  margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 767px) {
  .footer .row {
      flex-direction: column;
      align-items: center;
  }

  .footer .col-md-3,
  .footer .col-md-4 {
      text-align: center;
      padding: 20px;
  }

  .footer .footer-copyright {
      padding: 15px;
  }
}


/* Estilos para telas maiores */
@media (min-width: 992px) {
  .text-section {
    margin: 0 -50px;
  }
}

@media (min-width: 992px) {
  .text-section {
    margin: 0 -50px;
  }
}

/* Estilos base para telas maiores */
@media (min-width: 1920px) {
 
  .collapse .navbar-nav .nav-item a {
    font-size: 19px;
  }

  .centert-h2 {
    font-size: 70px !important;
  }

  .text-start p {
    font-size: 25px !important;
  }

  #Const{
    margin-top: 50px !important;
  }
  .text-section {
   
    width: 784px;
    margin: auto 0;
  }

  .text-center-sm h3 {
    margin-bottom:30px !important;
    font-size: 35px !important;
       
  }

  .text-center-sm #sub {
    margin-top:30px !important;
    font-size: 28px !important;

  }

  .text-center-sm {
    margin-bottom:25px !important;
    font-size: 25px !important;
    padding:2px !important ;
  }

  img {
    width: 700px;
 
 }
 #card img{
 width:110px;
 height:110px;
 }
 .features-icons-item h5{
  font-size:24px !important;
 
 }
.page-footer .col-12 img{
  object-fit: contain;
 }


}

@media (min-width: 1920px) {
  .page-footer {
    justify-content: space-between;
    align-items: stretch;
  }

  .page-footer > div {
    flex: 1;
    padding: 40px;
  }

  .page-footer > div ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: bolder;
  }

  .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}



@media (max-width: 767px) {
  .text-center-sm {
    text-align: center !important;
  }

  .centert-h2 {
    text-align: center !important;
    font-size: 30px !important;
    margin-right: 20px;
  }
}



/* Navbar em telas pequenas (celulares) */
@media (max-width: 767px) {
  .navbar {
      height: auto; /* Ajusta altura automaticamente */
      padding: 10px !important;
      transition: all 0.3s ease-in-out;
  }

  .navbar .nav-link {
      font-size: 14px !important;
      display: block;
      text-align: center;
      padding: 10px 0;
  }

  .navbar-toggler {
      border: none; /* Remove borda do botão */
  }

  .navbar .navbar-brand img {
      max-height: 40px;
  }
}