/* ==================================================
   BASE
================================================== */
body { background-color: #f8f9fa; }

/* ==================================================
   BANNER (fundo desfocado)
================================================== */
.event-banner{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 380px;
  background-image: url('/public/uploads/evento/logo-padrao.png');
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  z-index: 1;

  -webkit-mask-image: linear-gradient(to bottom, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 92%, transparent 100%);
}

.overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  z-index: 2;
}

/* ==================================================
   IMAGEM CENTRAL (MESMO PADRÃO DA PÁGINA ANTERIOR)
================================================== */
.event-content-wrapper{
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.event-image-frame{
  width: 920px;
  max-width: 92vw;

  height: 420px;            /* igual anterior */
  border-radius: 14px;
  overflow: hidden;

  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.35);
}

.event-image-frame img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 768px){
  .event-banner{ height: 300px; }
  .event-image-frame{
    height: 260px;          /* igual anterior */
    border-radius: 10px;
  }
}

/* ==================================================
   BARRA DO VOLTAR
================================================== */
.event-header{
  position: relative;
  z-index: 3;
  margin-top: 14px;
}

.event-header-bar{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.btn-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: none;
  border-radius: 10px;
  padding: 10px 14px;

  font-weight: 900;
  color: #fff;
  background: #d71920;
}

.btn-back:hover{
  background: #b4161c;
  color: #fff;
}

.btn-back:focus{
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(215,25,32,0.25);
}

/* ==================================================
   CONTEÚDO
================================================== */
.event-description{
  position: relative;
  z-index: 3;
  margin-top: 14px;
  padding: 18px 0 34px 0;
}

/* Título com barrinha */
.section-title{
  position: relative;
  padding-left: 14px;
  font-weight: 900;
  font-size: 1.35rem;
  color: #222;
  line-height: 1.2;
  margin: 0 0 14px 0;
}

.section-title::before{
  content:"";
  position: absolute;
  left: 0;
  top: 2px;
  height: 22px;
  width: 4px;
  background: #d71920;
  border-radius: 2px;
}

/* ==================================================
   FORM CARD
================================================== */
.form-card{
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.form-label{
  font-weight: 800;
  color: #222;
}

.form-control{
  border-radius: 10px;
  padding: 10px 12px;
}

/* botão padrão institucional */
.btn-action{
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 12px;
}

.btn-primary{
  background-color: #d71920;
  border-color: #d71920;
}

.btn-primary:hover{
  background-color: #b4161c;
  border-color: #b4161c;
}

/* ==================================================
   INFO CARD
================================================== */
.info-card{
  border: none;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.info-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #222;
  margin-bottom: 10px;
}

.info-title i{
  color: #d71920;
  font-size: 1.2rem;
}

.info-list{
  margin: 0;
  padding-left: 18px;
  color: #555;
  line-height: 1.5;
  font-size: .95rem;
}