  body {
  font-family: "Montserrat", serif;
      color: #333;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
  }
  
  html{
  scroll-behavior: smooth;
  }
  
  /* Estilo para navegadores compatíveis */
::-webkit-scrollbar {
    width: 12px; /* Largura da barra de rolagem */
}

::-webkit-scrollbar-thumb {
    background-color: #003c6a; /* Cor da barra */
    border-radius: 10px; /* Bordas arredondadas */
    border: 2px solid #ffffff; /* Bordas para destacar */
}

::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* Cor do fundo da barra */
    border-radius: 10px; /* Bordas arredondadas */
}


  html,
  body {
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
  }

  header{
      background-color: white;
      color: #003c6a;
      padding: 10px 0;
    
      text-align: center;
  }
  
  
       .zap {
            max-width: 60px;
            position: fixed;
            right: 10px;
            bottom: 10px;
            border-radius: 10px;
            z-index: 999;
        }
        
        
  footer p {
    text-align: left;
    max-width: 700px;
    margin: 10px auto;
    width: 90%;
}


  footer {
      background-color: #003c6a;
      color: white;
      padding: 10px 0;
      padding-bottom:0;
    
      text-align: center;
  }
  
  .menu {
      display: flex;
      justify-content: center;
      gap: 20px;
  }

  .menu a {
      color: #003c6a;
      text-decoration: none;
  }

  .logo-header {
      max-width: 140px;
  }



  /* Cores específicas */
  .vermelho {
      color: #d81e30;
  }

  .titulo-h2 {
      scroll-behavior: smooth !important;
      box-sizing: border-box;
      color: #333333;
      flex-grow: 0;
      padding: 0;
      text-align: center;
      letter-spacing: 1px;
      border-bottom: 2px solid #c22c32;
      font-style: normal;
      font-size: 26px;
      margin: 0;
      max-width: 600px;

      margin: 30px auto;
  }

  /* Fonte Gotham para números */
  .numero, .numero2 {
      font-family: "Montserrat", serif;

  }

  .black-banner {
      padding: 20px 0;
      background-color: black;
      color: white;
  }

  .black-banner h2,
  .black-banner a {
      font-size: 20px;
      font-weight: bold;
      text-align: left;
      width: 90%;
      margin: 10px auto;
      color: white;
  }

#informacoes-produto, #produto-imagem-ficha{
    width:95%;
}
  img {
      width: 100%;
      max-width: 800px;
  }

  video {
      width: 95%;
      max-width: 800px;
      margin: 10px auto;
      display: flex;
      justify-content: center;
      align-items: center;

  }


  .banner {
      width: 100%;
      overflow: hidden;
      max-width: 100%;
      margin: auto;
      text-align: center;
  }

  .swiper-container {
      width: 100%;
      height: 100%;
  }

  .swiper-slide img {
      width: 100%;
      height: auto;
      display: block;
  }

  .mapa {
      position: relative;
      width: 100%;
      height: auto;
      text-align: center;
  }

  .mapa-img {
      width: 100%;
      height: auto;
  }

.mapa-3d {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

  .markers {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      /* Impede que os cliques passem para os elementos abaixo */
  }

  .marker {
      position: absolute;
      width: 30px;
      height: 30px;
      background-image: url('../arquivos/lusty.png');
      background-size: contain;
      background-repeat: no-repeat;
      pointer-events: auto;
      /* Permite interatividade nos marcadores */
      z-index: 10;
      /* Garantir que o marcador fique acima da imagem */
  }

  .fabrica-info:hover {
      cursor: pointer;
  }

  .marker-tooltip {
      position: absolute;

      left: -10px;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 8px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      max-width: 400px;
      white-space: nowrap;
      font-size: 14px;
      display: none;
      /* Inicialmente invisível */
      z-index: 20;
  }

  .topicos-container {
      display: flex;
      padding: 10px;
      justify-content: center;
      gap: 20px;
      /* Espaço entre os banners */
      flex-wrap: wrap;
      /* Permite quebrar linhas se necessário */
  }

  .topicos {
      width: 200px;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      color: #fff;
      text-decoration: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s, box-shadow 0.3s;
  }

  .topicos:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  .topicos.carros {
      background: url('../arquivos/capa-categoria_1.png') center/cover no-repeat;
  }

  .topicos.motos {
      background: url('../arquivos/capa-categoria_2.png') center/cover no-repeat;
  }

  .topicos.caminhoes {
      background: url('../arquivos/capa-categoria_3.png') center/cover no-repeat;
  }

  .topicos.industrial {
      background: url('../arquivos/capa-categoria_4.png') center/cover no-repeat;
  }

  .topicos.graxas {
      background: url('../arquivos/capa-categoria_5.png') center/cover no-repeat;
  }


/* Estilos básicos para o cabeçalho */
header {
    position: relative;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu principal (desktop) */
.menu {
    display: flex;
    align-items: center;
    gap: 15px;
}


.menu a {
    color: #003c6a;
    text-decoration: none;
    font-size: 16px;
}

.menu .logo-header {
    max-height: 40px;
}

/* Botão de hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger div {
    background: #003c6a;
    height: 3px;
    width: 100%;
    border-radius: 2px;
}

/* Menu lateral (mobile) */
.side-menu {
    position: fixed;
    top: 0;
    right: -1300px;
    width: 65%;
    max-width: 300px;
    height: 100%;
    background-color: #003c6a;
    border-left: 2px solid white;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
}

.side-menu a {
    color: #fff;
    text-decoration: none;
    text-align:left;
    font-size: 18px;
}

/* Exibe o menu lateral quando estiver aberto */
.side-menu.open {
    right: 0;
}


/* Estilo para o link de dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
}

/* Estilos para o conteúdo do dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 125px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    top: 23px;
}

.dropdown-content a {
    color: #003c6a;
    text-align:left;
    text-decoration: none;
    padding: 10px;
    display: block;
}

/* Exibir o dropdown quando o mouse passar sobre o link */
.dropdown:hover .dropdown-content {
    display: block;
}


/* Menu lateral visível no mobile */
@media screen and (max-width: 1000px) {
    .hamburger {
        display: flex; /* Mostrar o botão de hambúrguer no mobile */
    }

.dropdown {
    position: relative;
    display: flex
;
    justify-content: start;
    align-items: self-start;
    flex-direction: column;
}
    .dropdown-content {
        position: static;
        display: block;
        width: 100%;
        box-shadow: none;
    }

    .dropdown-link {
        padding: 10px 0;
    }
    
    .menu {
        display: none; /* Ocultar o menu tradicional no mobile */
    }

    /* Ajustes no menu lateral para mobile */
    .side-menu {
        display: flex; /* Exibe o menu lateral quando o hambúrguer for clicado */
    }
}

/* Exibir o menu principal (desktop) */
@media screen and (min-width: 1000px) {
    .side-menu {
        display: none; /* Não mostra o menu lateral no desktop */
    }

    .menu {
        display: flex; /* Mostra o menu tradicional no desktop */
    }
}

  .mapa,
  .video,
  .categorias,
  .anp-slides {
      margin: 60px auto;
      width: 95%;
  }

  .slides {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      align-items: center;
  }

  section.anp-slides>div>div>img,
  section.anp-slides>div>div>video {
      max-width: 400px;
      border-radius: 10px;
      box-shadow: 0 0 4px grey;

  }



  section.listagem {
      overflow-x: hidden;
      margin:70px auto;
      position: relative;
  }
.btn {
    display: flex
;
    align-items: center;
    background-color: #003c6a;
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    width: 90%;
    padding: 15px 3px;
    margin: 10px auto;
    max-width: 500px;
    transition: 300ms linear;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 3px grey;
}

.btn:hover{
    transform:scale(1.05);
}

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
      color: #c22c32!important;
  }

  .swiper-button-next,
  .swiper-button-prev {
      color: #e6213b!important;
      font-size: 2rem;
      transition: color 0.3s;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px!important;

}