/* Estilos corrigidos conforme feedback do usuário */

/* Reset da seção hero para centralização */
.hero {
  position: relative;
  padding-top: 80px; /* Espaço de respiro entre cabeçalho e hero */
  background-color: #0a0a14;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 10, 20, 0.7), rgba(10, 10, 20, 0.9)), url('../images/bienal-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Centralização do conteúdo da hero */
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Ajuste da data da bienal com ícone */
.event-date-container {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.event-date {
  color: #000;
  font-weight: 700;
  margin: 0;
}

.bienal-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: 10px;
  object-fit: cover;
}

/* Barra de progresso estilizada */
.progress-container {
  max-width: 500px;
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.1);
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  background: linear-gradient(90deg, #f5a623, #e74c3c);
  height: 100%;
  width: 72%;
  border-radius: 15px;
  position: relative;
  transition: width 1.5s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Seção de estatísticas com fundo de imagem */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 10, 20, 0.85), rgba(10, 10, 20, 0.85)), url('../images/bienal-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Destaque para a seção de bônus */
.bonus-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.2), transparent 60%);
  z-index: 0;
}

.bonus-container {
  position: relative;
  z-index: 1;
  background: rgba(26, 26, 46, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Destaque para a última seção */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5a623, #e74c3c);
  padding: 80px 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 70%);
  z-index: 0;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Elementos gráficos decorativos */
.decorative-element {
  position: absolute;
  z-index: 0;
}

.decorative-element.top-right {
  top: 50px;
  right: 50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.2), transparent 70%);
  border-radius: 50%;
}

.decorative-element.bottom-left {
  bottom: 50px;
  left: 50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.15), transparent 70%);
  border-radius: 50%;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .event-date-container {
    padding: 8px 15px;
  }
  
  .bienal-icon {
    width: 25px;
    height: 25px;
  }
  
  .progress-container {
    max-width: 100%;
  }
  
  .decorative-element.top-right,
  .decorative-element.bottom-left {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .event-date-container {
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  
  .bienal-icon {
    width: 20px;
    height: 20px;
  }
  
  .progress-text {
    font-size: 14px;
  }
}
