.banner-slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 480px;
}



.slider {
  position: relative;
  height: 100%;
}


.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background-color: #eee;
}
    .slide-content{ 
        text-align: center;
        color: white;
        text-shadow: 1px 2px 5px rgba( 0,0,0,0.8 );
    }


    .slide-content h2{
      text-align: center; 
      font-weight: 800;
      text-transform: uppercase;
      font-family: 'Roboto Slab';
      letter-spacing: 5px;
      font-size: 48px;
    }

    .slide-content p{ text-align: center; font-family: 'Open Sans';  font-size: 24px; }

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e41b16;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  z-index: 2;
}

.prev { left: 0px; }
.next { right: 0px; }

.indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: red;
}
