/* BANNER FULL WIDTH COM CARROSSEL E RESPONSIVO */

/* Banner full width - técnica que funciona */
.banner-section-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background-color: #f0f0f0;
}

.banner-carousel-full {
  position: relative;
  width: 100%;
  height: 400px; /* Altura fixa para desktop */
  overflow: hidden;
}

.banner-slide-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slide-full.active {
  opacity: 1;
  position: relative;
}

.banner-slide-full img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém proporção sem distorcer */
  object-position: center;
  display: block;
}

/* Links dentro dos banners */
.banner-slide-full a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-slide-full a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Controles do carrossel */
.carousel-btn-full {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.carousel-btn-full:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-btn-full.prev {
  left: 30px;
}

.carousel-btn-full.next {
  right: 30px;
}

/* Dots de navegação */
.carousel-dots-full {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot-full {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #1f2937;
}

.dot-full.active {
  background: white;
  transform: scale(1.3);
}

.dot-full:hover {
  background: #000000;
}

/* RESPONSIVO */

/* Tablet */
@media (max-width: 1024px) {
  .banner-carousel-full {
    height: 350px;
  }

  .carousel-btn-full {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .carousel-btn-full.prev {
    left: 20px;
  }

  .carousel-btn-full.next {
    right: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .banner-carousel-full {
    height: 250px; /* Altura menor para mobile */
  }

  .carousel-btn-full {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .carousel-btn-full.prev {
    left: 15px;
  }

  .carousel-btn-full.next {
    right: 15px;
  }

  .carousel-dots-full {
    bottom: 20px;
    gap: 12px;
  }

  .dot-full {
    width: 12px;
    height: 12px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .banner-carousel-full {
    height: 200px; /* Ainda menor para telas muito pequenas */
  }

  .carousel-btn-full {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-btn-full.prev {
    left: 10px;
  }

  .carousel-btn-full.next {
    right: 10px;
  }

  .carousel-dots-full {
    bottom: 15px;
    gap: 10px;
  }

  .dot-full {
    width: 10px;
    height: 10px;
  }
}
