body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  background-color: #363473; 
}
main {
  position: relative;
  opacity: 0;
  filter: blur(10px);
  transition: opacity .1s ease-in-out, filter .4s ease-in-out;
}
header {
  margin-top: 1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header > img {
  width: 8em;
  height: 8em;
  border-radius: 100%;
  object-fit: contain;
  box-shadow: rgba(28, 32, 93, 0.50) 0px 2px 10px 0px;
}
header > h1 {
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  border-radius: 1em;
  background-color: #B5024E; 
  padding: 0.4em 0.8em;
  color: #fff;
}
.redes-lista {
  display: flex;
  justify-content: center;
  padding: 0;
}
.redes-lista li {
  margin: 0 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
}
.redes-lista li a {
  font-size: 1.5em;
}
.titulo-urgente {
  text-align: center;
}
.titulo-urgente {
  text-align: center;
}
.urgente {
  display: inline-block;
  background-color: #B5024E;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.3rem 0.43em;
  border-radius: 0.2em;
  margin-right: 0.2em;
}
.titulo-noticia {
  font-size: 0.99em;
  font-weight: bold;
  padding: 1em 1em;
  display: inline-block;
  margin: 0;
}
.link-noticia {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.link-noticia:hover {
  background-color: #B5024E;
  color: #fff;
}
.titulo-texto {
  color: #fff;
}

/* LOCATION - Estilos atualizados */
.location {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.location-wrapper {
  /* Sem estilos, apenas container */
}

.location-info {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
  color: #fff !important;
  font-size: 14px;
  font-weight: normal !important;
}

.location-info i {
  margin-right: 8px;
  color: #fff !important;
  font-size: 14px !important;
}

/* CONTACT SECTION */
.contact-section {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.contact-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.contact-item {
  display: inline-block;
  margin: 5px 10px;
  padding: 8px 15px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.contact-item i {
  margin-right: 5px;
}

/* MAIN LIST STYLES */
ul {
  box-sizing: border-box;
  list-style: none;
  max-width: 480px;
  margin: 0 auto;
  padding: 0.5em 0.9em;
  font-weight: 549;
}
ul > li {
  background-color: #fff; 
  color: #645E90; 
  border-radius: 10em;
  padding: 1em;
  margin: .8em 0;
  box-shadow: rgba(28, 32, 93, 0.24) 0px 2px 8px 0px;
  transition: all 0.2s ease-in-out;
}
ul > li:hover {
  transform: scale(1.1);
}
ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  text-decoration: none;
  color: #645E90; 
  font-weight: 5490;
}

@media only screen and (max-width: 600px) {
  main {
    margin-top: 5.5rem;
  }
}