body,p,li,ul,h5{
    padding: 0px; 
    margin: 0px;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;

}

.banner{
    position: absolute;
    top: 0;
    left: 0;    
    width: 100%;
    height: 200px;
    background-image: url("img/palestra-auditorio-scaled.jpg");
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: blur(2px);
    -webkit-filter: blur(2px);   
}

.container{
    width: 90%;
    margin-left: 5%;
    height: auto;
}

.navbar{
    width: 100%;
    height: auto;
    background-color: #F2F0EF;
    border-radius: 0px 0px 16px 16px;
}

.nav-list{
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
    flex-wrap: wrap;
    
}

img{
    max-width: 100%;
    display: block;
}

.logo{
    width: 30px;
    height: auto;
}

.logo-escrita{
    width: 70px;
    height: auto;
}

/* Define layout em grid com 2 colunas */
.main-content section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: start;
  margin-top: 10px;
}

.coluna-esquerda .texto p{
    text-align: justify;
    padding-bottom: 20px;    
}

.img-coluna-esquerda{
    padding-top: 20px;
    margin-bottom: 30px;
    
}

.img-coluna-esquerda img{
  justify-content: center;
  max-width: 50%;
  margin: 0 auto;
}

.data-localizacao p{
    padding-bottom: 5px;
}

.banner-cliente {
  justify-self: end;
  align-self: start;

}

.banner-cliente img {
  max-width: 50%;
  height: auto;
  margin: 0 auto;
}

.box-ingresso{
    width: 100%;
    height: auto;
    background-color: #E8E8E8;
    margin-top: 10px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.txt-ingresso{
    display: flex;
    justify-content: space-between;
    padding: 40px;
    align-items: center;
    flex-wrap: wrap;   
}

.botao{
  margin-top: 10px;
}

.botao a{
  display: inline-block;
  padding: 12px 24px;
  background-color: #227832;     /* azul padrão */
  border-bottom: solid 5px #185824;
  color: #fff;                   /* texto branco */
  text-decoration: none;         /* remove sublinhado */
  border-radius: 6px;            /* cantos arredondados */
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao a:hover {
  background-color: #227832;     /* azul mais escuro */
  transform: scale(1.03);        /* leve aumento */
}

.txt-ingresso p:nth-child(1){
    color:#3b3b3b;
    font-weight: bold;
}

.txt-ingresso p:nth-child(2){
    color:#F57E06;
    font-size: 20px;
    font-weight: bold;
}

.box-alert{
  background-color: #e9dbb7;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.box-alert p{
  padding-bottom: 10px;
  font-size: 12px;
  color: #9d7b41;
}

.box-alert a{
  text-decoration: none;
  color: #573311;
}

.box-alert > b{
  color: #52819b;
}

.footer{
  width: 90%;
  margin-left: 5%;  
  background-color: #F57E06;
  height: auto;
  border-radius: 5px;
  color: #E8E8E8;
}
        
.footer section{
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
  padding: 10px;
}

.box-local-evento{
    margin-bottom: 30px;
}

.box-local-evento p{
  padding-bottom: 20px;
}

.box-local-evento a{
  border: solid 2px #F57E06;
  border-radius: 5px;
  padding: 5px;
  text-decoration: none;
  font-size: 20px;
  color: #F57E06;
}

.box-local-evento  a:hover {
  color: #ffffff;
  background-color: #F57E06;
}


/* Responsivo: vira uma coluna só no celular */
@media (max-width: 768px) {
  .main-content section {
    grid-template-columns: 1fr;
  }

  .footer section{
    grid-template-columns: 1fr;
  }

  .banner-cliente {
    justify-self: center;
    margin-top: 20px;
  }

  .txt-ingresso .botao{
    padding-top: 15px;
  }

  .txt-ingresso div{
    margin: 0 auto;
  }

}

