/* Topbar inicial */
.topbar-mov {
  transition: all 0.3s ease;
}

/* Esconde a topbar */
.hide-topbar {
  opacity: 0;
  transform: translateY(-100%);
}

/* Header com top ajustável */


/* Efeito bounce opcional */
.bounce-up {
  animation: bounceHeader 0.4s ease;
}

@keyframes bounceHeader {
  0%   { transform: translateY(-5px); }
  50%  { transform: translateY(3px); }
  100% { transform: translateY(0); }
}

.banner-principal .swiper-slide {
  position: relative;
  overflow: hidden;
}

.banner-principal .col-lg-6 {
  height: 100%;
}

.banner-principal img {
  object-fit: cover;
}
  .w-120 {
    width: 120% !important;
    margin-left: -20%;
}
/* Estilo base dos bullets */
.swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}

/* Bullet ativo */
.swiper-pagination-bullet-active {
  background-color: #ffffff;
  transform: scaleX(1.3);
}


/* Esconde a topbar */
.hide-topbar {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.header-ajustavel {
  top: 0; /* altura da topbar */
  transition: top 0.3s ease;
}
.header-ajustavel.top-0 {
  top: 0 !important;
}

.fixed-top {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.lead {
    font-size: 2.25rem;
    font-weight: 300;
    padding-bottom: 1rem;
}

.nav-link {
    font-size: 0.8rem;
}
.categoria-thumb {
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  position: relative;
  transition: filter 0.3s ease, background-color 0.3s ease;
  filter: brightness(60%);
  border-radius: 0.5rem;
}

.categoria-thumb span {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.categoria-card:hover .categoria-thumb {
  filter: brightness(90%);
}
