/* ===== Import de Ícones ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ===== Banner ===== */
.banner-evento {
  width: 100%;
  height: 65vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
  position: relative;
}

.banner-evento::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 20%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* ===== Card Geral ===== */
.evento-detalhe {
  font-family: 'Roboto', sans-serif;
  max-width: 1000px;
  margin: -250px auto 50px auto; /* Mais em cima */
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 9999;
  animation: fadeInUp 0.8s ease;
}

/* ===== Título ===== */
.evento-titulo {
  font-size: 4.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(45deg, #ff7e00, #861f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Infos ===== */
.evento-data,
.evento-hora,
.evento-local {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.evento-data i,
.evento-hora i,
.evento-local i {
  color: #ff7e00;
  font-size: 2.2rem;
}

/* ===== Descrição ===== */
.evento-descricao {
  margin-top: 20px;
  font-size: 2.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* ===== Links ===== */
.evento-links {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.evento-links a {
  background: linear-gradient(135deg, #ff7e00, #861f00);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.evento-links a:hover {
  background: linear-gradient(135deg, #861f00, #ff7e00);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ===== Galeria ===== */
.carousel {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.carousel-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.carousel-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-item img:hover {
  transform: scale(1.08);
}

/* ===== Animações ===== */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .evento-detalhe {
    margin: -80px 15px 30px 15px;
    padding: 25px;
  }
  .evento-titulo {
    font-size: 2rem;
  }
  .carousel-item img {
    height: 180px;
  }
}
#evento-page {
  padding: 0;
}
