.custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.custom-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}

.custom-slider .slide.active {
  position: relative;
  opacity: 1;
  z-index: 2;
}

.custom-slider .slide.has-text {
  height: 100vh;
}

.custom-slider .slide.has-text .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-slider .slide.no-text {
  height: 500px; 
}

.custom-slider .slide.no-text .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-slider .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 3;
}

.custom-slider .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 4;
  width: 90%;
  max-width: 950px;
}

.custom-slider .slide-content .hexagon-icon {
  width: 75px;
  height: 85px;
  background-color: #f15a24;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}

.custom-slider .slide-content .hexagon-icon i {
  color: #fff;
  font-size: 34px;
}

.custom-slider .slide-content h2 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
  color: #fff;
}

.custom-slider .slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.custom-slider .btn-ver-mais {
  display: inline-block;
  padding: 14px 45px;
  background-color: #f15a24;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0px; 
  transition: background 0.3s ease, transform 0.2s ease;
  letter-spacing: 1px;
}

.custom-slider .btn-ver-mais:hover {
  background-color: #d64b1b;
  transform: translateY(-2px);
}

.custom-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-slider .slider-btn i {
  font-size: 50px; 
}

.custom-slider .slider-btn:hover {
  color: #fff;
  background: transparent;
}

.custom-slider .slider-btn.prev { left: 20px; }
.custom-slider .slider-btn.next { right: 20px; }

@media (max-width: 768px) {
  .custom-slider .slide.has-text { height: 80vh; } 
  
  .custom-slider .slide-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  
  .custom-slider .slide-content .hexagon-icon {
    width: 60px;
    height: 68px;
  }
  
  .custom-slider .slide-content .hexagon-icon i {
    font-size: 26px;
  }
  
  .custom-slider .slider-btn i { font-size: 35px; }
  .custom-slider .slider-btn.prev { left: 5px; }
  .custom-slider .slider-btn.next { right: 5px; }
}