/* Carousel Hero */
.hero-carousel {
  height: 100vh;
  min-height: 600px;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-carousel .carousel-caption {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  width: 80%;
  max-width: 800px;
  text-align: center;
}

/* Estilos de texto */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
  background-color: var(--pantone-152);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-btn:hover {
  background-color: var(--pantone-106);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Overlay para mejor legibilidad - DISABLED */
/* .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
} */

/* Controles del carousel */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--pantone-152);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}



/* Estilos para los iconos de los controles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 24px;
  height: 24px;
}

/* Indicadores */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--pantone-152);
  background-color: transparent;
  margin: 0 8px;
}

.carousel-indicators .active {
  background-color: var(--pantone-152);
  border-color: var(--pantone-152);
}

.carousel-logo{
  position: absolute; 
  top: 100px; 
  right: 100px; 
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 8px;
}
.carousel-logo img {
  max-width: 150px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-carousel {
    height: 40vh;
    min-height: 300px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
  .carousel-logo{
    top: 50px;
    left: unset;
    right: 20px;
  }
  .carousel-logo img {
    max-width: 75px;
  }
}
