/* ============================================
   BANNER SLIDE V4
   ============================================ */

h1, h2, h3, a, p {
    font-family: Flama, Roboto, sans-serif !important;
}

.banner-slide-v4 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #0a0f1e;
}

/* ---------- TRACK ---------- */
.bsv4-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ---------- SLIDE ---------- */
.bsv4-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  padding-left: 120px;
  padding-bottom: 60px;
}

.bsv4-slide.active {
  opacity: 1;
  pointer-events: all;
}

/* ---------- BACKGROUND ---------- */
.bsv4-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.bsv4-slide.active .bsv4-bg {
  transform: scale(1);
}

/* ---------- OVERLAY ---------- */
.bsv4-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6, 14, 38, 0.82) 0%,
    rgba(6, 14, 38, 0.50) 55%,
    rgba(6, 14, 38, 0.10) 100%
  );
}


/* ---------- CONTENT ---------- */
.bsv4-content {
  position: relative; 
  top: auto;
  left: auto;
  transform: translateY(20px);
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transition: transform 0.7s ease 0.3s, opacity 0.7s ease 0.3s;
}

.bsv4-slide.active .bsv4-content {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- CATEGORIA ---------- */
.bsv4-categoria {
  display: inline-block;
  background: rgb(236 55 64 / 1);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  width: fit-content;
}

/* ---------- TÍTULO ---------- */
.bsv4-titulo {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -1px;
}

.bsv4-titulo-destaque {
    background: linear-gradient(to right, #CCB146, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- ACTIONS ---------- */
.bsv4-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Botão primário */
.bsv4-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(236 55 64 / 1);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(220, 50, 50, 0.18);
  transition: background 0.25s, transform 0.2s;
}

.bsv4-btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  color: rgb(236 55 64 / 1);;
}

.bsv4-btn-primary svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0px !important;
}

/* Botão secundário */
.bsv4-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(174 207 230 / 1);
  font-family: 'Roboto', sans-serif;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.bsv4-btn-secondary:hover {
  opacity: 1;
  color: #fff;
}

.bsv4-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgb(174 207 230 / 1);
  border-radius: 50%;
  flex-shrink: 0;
}

.bsv4-play-icon svg {
margin-left: 0;

}

.bsv4-separator {
  opacity: 0.5;
  margin: 0 2px;
}


/* ---------- DOTS ---------- */
.bsv4-dots {
  position: absolute;
  left: 120px;
  top: 70%;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

/* Telas muito grandes: 1600px+ */
@media (min-width: 1600px) {
  .bsv4-dots {
    top: 72%;
  }
}

/* Telas grandes: 1280px - 1599px */
@media (max-width: 1599px) {
  .bsv4-dots {
    top: 70%;
  }
}

/* Telas médias: 1024px - 1279px */
@media (max-width: 1279px) {
  .bsv4-dots {
    top: 68%;
  }
}

/* Tablets: 768px - 1023px */
@media (max-width: 1023px) {
  .bsv4-dots {
    top: 72%;
  }
}

/* Mobile: até 767px */
@media (max-width: 767px) {
  .bsv4-dots {
    top: auto;
    bottom: 24px;
    left: 24px;
  }
}
.bsv4-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.bsv4-dot.active {
  background: #c9a84c;
  width: 44px;
}

/* ---------- VAZIO ---------- */
.bsv4-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  opacity: 0.5;
  font-family: 'Roboto', sans-serif;
}

/* ---------- RESPONSIVO ---------- */

@media (max-width: 1400px) {
    section.banner-slide-v4 {
    padding: 0 !important
    }
    }

@media (max-width: 868px) {
	  .banner-slide-v4 {
    height: 80px;
    min-height: 480px;
		  margin-top: 80px;
  }

  .bsv4-bg {
    background-position: center top;
  }
	  .bsv4-slide {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 40%;
    justify-content: center;
  }
  .bsv4-content {
    top: auto;
    bottom: 60px;
    left: 24px;
    right: 24px;
    max-width: 100%;
    transform: none;
    opacity: 0;
  }

  .bsv4-slide.active .bsv4-content {
    transform: none;
    opacity: 1;
  }

  .bsv4-dots {
    top: auto;
    bottom: 24px;
    left: 60px;
  }

 .bsv4-actions {
    gap: 16px;
  }
	    .bsv4-btn-primary,
    .bsv4-btn-secondary {
        padding: 12px 18px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .bsv4-btn-primary {
		width: 180px;
        padding: 10px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .bsv4-btn-primary svg,
    .bsv4-btn-secondary svg {
        width: 16px;
        height: 16px;
    }
		  .bsv4-slide {
    padding-top: 60%;
   
  }
}