.bgp01{
  background-color: #f98200;
}

.logos-marquee {
  overflow: hidden;
  width: 100%;
}

.bg03{

  background-color: #f98200;
}

.bg04{

  background-color: #f9cc00;
}
.color-l{
  color: #cc6b00
}



.tt01{
  
  font-family: "AmsiProCond-Ultra", sans-serif;
  color: rgb(226, 101, 6);
  font-size: 5em;
  font-weight: normal;
  text-transform: uppercase;
}

.tt02{
  font-family: "AmsiPro", sans-serif;
  color: rgb(42, 42, 42);
  font-size: 2em;
  font-weight: normal;
  text-transform: uppercase;
}
.tt03{
  font-family: "AmsiPro", sans-serif;
  color: rgb(42, 42, 42);
  font-size: 1em;
  font-weight: normal;
}
.tt04{
  font-family: "AmsiPro", sans-serif;
  color: rgb(42, 42, 42);
  font-size: 1.3em;
  font-weight: normal;
  text-transform: uppercase;
}

.tt05{
  font-family: "AmsiProCond-Ultra", sans-serif;
  color: rgb(42, 42, 42);
  font-size: 2.5em;
  font-weight: normal;
  text-transform: uppercase;
}
.tt06{
  font-family: "AmsiPro", sans-serif;
  color: rgb(42, 42, 42);
  font-size: 2em;
  font-weight: normal;
}
.tt07{
    font-family: "AmsiProCond-Ultra", sans-serif;
    color: rgb(249 130 1);
    font-size: 5em;
    font-weight: normal;
    line-height: 0.6em;
    margin-bottom: 0;
    text-align: center;
}
.tt08{
  
  font-family: "AmsiProCond-Ultra", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 6em;
  font-weight: normal;
  text-transform: uppercase;
}
.tt09{
  
  font-family: "AmsiProCond-Ultra", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 1.5em;
  font-weight: normal;
  text-transform: uppercase;
  margin: 20px 0px;
}

.tt010{
  font-family: "AmsiPro", sans-serif;
  color: rgb(42, 42, 42);
  font-size: 1.2em;
  font-weight: normal;
}

.tt011{
  font-family: "AmsiProCond-Ultra", sans-serif;
  color: rgb(226, 101, 6);
  font-size: 3.5em;
  font-weight: normal;
  text-transform: uppercase;
}


.bg-y{
  background-color: #ffdd44;
}

/* Tabs customizadas */
.nav-tabs .nav-link {
  border: 1px solid #f98200; /* borda para os inativos */
  color: #4637hh;            /* texto inativo */
  background-color: transparent;
  transition: all 0.3s ease;
}

/* Estado hover (quando passa o mouse) */
.nav-tabs .nav-link:hover {
  background-color: #f98200; /* leve fundo ao passar mouse */
  color: #fff;
}

/* Estado ativo */
.nav-tabs .nav-link.active {
  background-color: #f98200 !important;
  color: #fff !important;
  border-color: #f98200 !important;
}


/* Thumb ocupa todo o container */
.video-inline .video-cover {
  object-fit: cover;
}

/* Cursor "play" no botão */
.video-inline button {
  cursor: pointer;
}


.vd001{
      border: 8px solid #f98200;
    margin-bottom: 50px;
}
.test1{
    font-family: "AmsiPro", sans-serif;
    color: rgb(42, 42, 42);
    font-size: 1.07em;
    font-weight: normal;
}

/* Container principal do carrossel */
.bf-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 1rem 0;
  background: #f98200; /* garante que o fundo seja uniforme */
}

/* Fita de logos animada */
.bf-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: scroll-left 40s linear infinite;
}

/* Parar a animação ao passar o mouse */
.bf-marquee:hover .bf-track {
  animation-play-state: paused;
}

/* Cada logo */
.bf-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Imagem da logo mantendo tamanho original */
.bf-logo img {
  height: auto;
  max-height: 60px; /* ajuste se quiser maior/menor */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Degradê nas laterais */
.bf-marquee::before,
.bf-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.bf-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f98200 0%, rgba(249, 130, 0, 0) 100%);
}

.bf-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f98200 0%, rgba(249, 130, 0, 0) 100%);
}

/* Animação infinita */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Flutuação suave do wrapper */
.position-sticky .bf-float {
  position: relative;
  display: inline-block;
  will-change: transform;
  transform: translateZ(0);
  animation: bfFloat 3s ease-in-out infinite !important;
}

/* Imagem */
.position-sticky .bf-float > img {
  display: block;
  width: 100%;
  height: auto;
}

/* Sombra separada */
.position-sticky .bf-float .bf-float-shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -20px;
  height: 26px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 70%);
  filter: blur(6px);
  will-change: transform, opacity;
  animation: bfShadow 3s ease-in-out infinite !important;
}

/* Pausar no hover */
.position-sticky .bf-float:hover,
.position-sticky .bf-float:hover .bf-float-shadow {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes bfFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -30px, 0); }
}
@keyframes bfShadow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.35; }
  50%      { transform: translate3d(0, 30px, 0) scale(0.9); opacity: 0.18; }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .position-sticky .bf-float,
  .position-sticky .bf-float .bf-float-shadow {
    animation: none !important;
    transform: none !important;
  }
}




.tt010 a{
  font-family: "AmsiProCond-Ultra", sans-serif;
  color: rgb(230, 127, 18);
  font-size: 1.5em;
  font-weight: normal;
  text-transform: uppercase
  margin: 20px 0px;
}
.tt010 a:hover{
  color: rgb(0, 0, 0) !important;
}


.page-loading {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: all .4s .2s ease-in-out;
        transition: all .4s .2s ease-in-out;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        z-index: 9999;
      }
      [data-bs-theme="dark"] .page-loading {
        background-color: #121519;
      }
      .page-loading.active {
        opacity: 1;
        visibility: visible;
      }
      .page-loading-inner {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        text-align: center;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: opacity .2s ease-in-out;
        transition: opacity .2s ease-in-out;
        opacity: 0;
      }
      .page-loading.active > .page-loading-inner {
        opacity: 1;
      }
      .page-loading-inner > span {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: normal;
        color: #6f788b;
      }
      [data-bs-theme="dark"] .page-loading-inner > span {
        color: #fff;
        opacity: .6;
      }
      .page-spinner {
        display: inline-block;
        width: 2.75rem;
        height: 2.75rem;
        margin-bottom: .75rem;
        vertical-align: text-bottom;
        background-color: #d7dde2; 
        border-radius: 50%;
        opacity: 0;
        -webkit-animation: spinner .75s linear infinite;
        animation: spinner .75s linear infinite;
      }
      [data-bs-theme="dark"] .page-spinner {
        background-color: rgba(255,255,255,.25);
      }
      @-webkit-keyframes spinner {
        0% {
          -webkit-transform: scale(0);
          transform: scale(0);
        }
        50% {
          opacity: 1;
          -webkit-transform: none;
          transform: none;
        }
      }
      @keyframes spinner {
        0% {
          -webkit-transform: scale(0);
          transform: scale(0);
        }
        50% {
          opacity: 1;
          -webkit-transform: none;
          transform: none;
        }
      }

@media(max-width: 767.98px){
    .tt01 {
    font-size: 3.5em;
    line-height: 1em;
    }
    .tt02 {
        font-size: 1.4em;
    }
    #kitbiker {
      background-image:none  !important;
    }
    .tt04 {
    font-size: 1.15em;
}
    .tt05 {
      font-size: 1.9em;
    }
    .tt07 {
    font-size: 3.5em;
    }
    .tt08 {
    font-size: 3em;
}
    .tt011 {
    line-height: 1em;
}

    /* Mobile - até 768px (ajuste conforme necessário) */
    @media (max-width: 768px) {
      section.position-relative.mt-5 {
        height: 35vh !important;
      }
    }

body {
  overflow-x: hidden;
}
}

/* =========================================
   REGRAS DA GALERIA DE FOTOS PERSONALIZADA
   ========================================= */

/* * 1. REGRAS PARA MANTER O ASPECTO QUADRADO/FIXO (1:1) DAS IMAGENS NO GRID 
 */

.galeria-item-proporcao {
  /* Define uma proporção 1:1 usando padding-top */
  padding-top: 100%; 
  position: relative;
}

.galeria-item-proporcao img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Garante que a imagem preencha a área, cortando se necessário */
  object-fit: cover; 
}

.galeria-item-proporcao a {
  /* Garante que o link ocupe toda a área do container de proporção */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* * 2. REGRAS PARA A COR PERSONALIZADA DO BOTÃO DE DOWNLOAD (#f98200) 
 * Usa !important para garantir que sobrescreva o Bootstrap.
 */

/* Cor personalizada para o botão de download no LIGHTBOX (Pop-up do lightGallery) */
.lightgallery .lg-sub-html a.btn-primary {
  background-color: #f98200 !important;
  border-color: #f98200 !important;
  color: #fff !important;
}
.lightgallery .lg-sub-html a.btn-primary:hover,
.lightgallery .lg-sub-html a.btn-primary:focus {
  background-color: #e67500 !important; /* Um tom ligeiramente mais escuro para o hover */
  border-color: #e67500 !important;
  color: #fff !important;
}

/* Cor personalizada para o botão de download no GRID (card-footer) */
.card-footer .btn-secondary {
  background-color: #f98200 !important;
  border-color: #f98200 !important;
  color: #fff !important; /* Garante que o texto e ícones sejam brancos */
}
.card-footer .btn-secondary:hover,
.card-footer .btn-secondary:focus {
  background-color: #e67500 !important; /* Um tom ligeiramente mais escuro para o hover */
  border-color: #e67500 !important;
  color: #fff !important;
}

.logo-title-center {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza logo e texto juntos */
  margin-bottom: 16px;
}

.logo-especial {
  height: 80px;
  margin-bottom: 8px;
}

/* video-container já está adequado para responsividade */
.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.15);
  display: block;
  background: #000;
  object-fit: cover;
}
