@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
	color: #fff;
	background-color: #013;
	scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 29, 58, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  z-index: 1000;
}

header h1 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}



    nav a {
      color: white !important;
      text-decoration: none;
      margin: 0 10px;
    }

    nav a:hover {
      text-decoration: underline;
    }

section {
  min-height: 100vh;
  padding: 100px 20px 60px;
  text-align: center;
}

	
.home {
  background: linear-gradient(rgba(0,0,50,0.7), rgba(0,0,50,0.7)), url("../imgs/fundo-bandeira.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.home p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
	  .home img { width:75%; }

.btn {
  background: #00aaff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  margin: 10px;
}

.btn:hover {
  background: #0088cc;
}

h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00aaff;
}

/* EVENTO */


/* ----- Seção Evento ----- */
#evento {
  padding: 2rem 1rem;
}

#evento h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.evento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.evento div {
  padding: 1rem;
}

/* Responsividade */
@media (min-width: 768px) {
  .evento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .evento {
    grid-template-columns: repeat(3, 1fr);
  }
}




/*
.evento{
	display: grid;
	grid-template-areas:
	"objetivos tema"
	"programacao tema";
	grid-template-columns: auto auto auto;
	gap: 15px;
}
#evento .objetivos{
  grid-area: objetivos;
}
#evento .tema h4{ text-align: center; }
#evento .tema {
  grid-area: tema;
	text-align: justify;
}
#evento .programacao {
  grid-area: programacao;
}
*/
.evento, .hospedagem, .local, .downloads {
  background-color: rgba(16, 40, 79, 0.9);
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 40px 20px;
}


ul {
  list-style: none;
  margin-top: 15px;
}

ul li {
  margin: 8px 0;
	
}

footer {
  background: #06142a;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}


.hotel-list {
  list-style: none;
  text-align: left;
  margin-top: 15px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.hotel-list li {
	margin: 15px 0;
	background: #FFF;
	padding: 15px;
	border-radius: 8px;
	width: 400px;
	margin: 15px 15px;
	color: #013;
	float: left;
}
.hotel-list a {
  color: #00aaff;
  text-decoration: none;
  font-weight: bold;
}
.hotel-list a:hover {
  text-decoration: underline;
}
    /* Responsividade */
    @media (max-width: 768px) {
      .evento {
		  grid-template-columns: 1fr; }