/* ======================================== */
/* CSS PARA O BANNER HERO (banner.css)      */
/* ======================================== */

.hero-banner {
  position: relative;
  height: 90vh; /* Altura do banner, 90% da altura da tela */
  min-height: 600px;
  color: #ffffff;
  display: flex; /* Usado para alinhar o .banner-content */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Slideshow de Fundo --- */
.slideshow-container,
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Efeito de fade */
  z-index: 1; /* Garante que os slides fiquem atrás do overlay */
}

.slide.active {
  opacity: 1; /* Apenas o slide com a classe .active será visível */
}
/* Overlay escuro para contraste */
.banner-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}


/* --- Conteúdo Sobreposto --- */
.banner-content {
  position: relative;
  z-index: 3; /* Conteúdo fica na frente de tudo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Coluna da esquerda */
.banner-text-left {
  max-width: 55%;
}

.banner-text-left h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner-text-left h1 strong {
  display: block; /* Faz "CENTRO DE EVENTOS" quebrar linha se necessário */
  font-weight: 700;
}

/* Coluna da direita */
.banner-award-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  max-width: 250px;
}

.banner-award-right img {
  width: 100%;
  max-width: 150px;
}

.banner-award-right p {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}


/* --- Responsividade do Banner --- */
@media (max-width: 991px) {
  .hero-banner {
    height: auto;
    padding: 150px 0 80px 0;
  }
  
  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .banner-text-left {
    max-width: 100%;
    order: 2; /* Coloca o texto abaixo do prêmio no mobile */
  }

  .banner-award-right {
    max-width: 200px;
    margin-bottom: 40px;
    order: 1; /* Coloca o prêmio acima do texto */
  }

  .banner-text-left h1 {
    font-size: 2.5rem;
  }
}