body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: #5f2c82;  /* fallback para navegadores antigos */
    background: -webkit-linear-gradient(to right, #49a09d, #5f2c82);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #49a09d, #5f2c82); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */          
    font-family: Verdana, sans-serif;
    color:white
}

.content-container {
    background-color: rgba(39,39,39,0.9);
    border-radius: 10px;
    margin: 50px auto;
    padding: 75px 0;
    max-width: 90%;
    min-height: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6), 0 4px 6px rgba(0, 0, 0, 0.4);
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.split-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: rgba(39,39,39,0.9);
  border-radius: 10px;
  margin: 50px auto;
  padding: 75px 50px;
  max-width: 90%;
  min-height: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6), 0 4px 6px rgba(0, 0, 0, 0.4);
}

.footer {
  color:white;
  text-align: center;
  justify-content: center;
  padding: 20px;
  font-size: 8pt;
  background-color: rgb(39,39,39);
  display: flex;
  font-weight: normal;
}

.header {
  color:white;
  justify-content: center;
  padding: 8px;
  background-color: rgb(39,39,39);
  display: flex;
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  text-shadow: 0px 0px 12px black;
  font-size: 16pt;
}

.title-left,
.text-left {
  flex-basis: 50%;
  font-family: Verdana, sans-serif;
  text-align: left;
  margin: 10px 20px;
  max-width: 500px;
}

.title-right,
.text-right {
  flex-basis: 50%;
  font-family: Verdana, sans-serif;
  text-align: left;
  margin: 10px 20px;
  max-width: 500px;
}

.title-right,
.title-left {
  color: lightskyblue;
  font-weight: bold;
}

.title {
    width: 100%;
    color:lightskyblue;
    font-size: x-large;
    text-align: center;
    padding: 0;
    margin-bottom: 30px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.img-left,
.img-right {
    flex-basis: 50%;
    max-width: 100%;
    height: auto;
    margin: 5% 0%; /*acima abaixo direita esquerda*/
}

.block {
  color:white;
  background-color:slateblue;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 10px;
  max-width: 250px;
  min-height: 70px;
  transition: color 0.3s, text-shadow 0.3s; /* efeito de transição suave no hover */
}

.block:hover {
  color:white;
  background-color:mediumslateblue;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  text-shadow: 0 0 10px black;
  border-radius: 10px;
  text-align: center;
  display: flex;
  padding: 10px;
  margin: 10px;
  max-width: 250px;
  min-height: 70px;
}

.social-logo,
.social-logo-blk {
  margin: 5px 0 0 20px; /* sintaxe: acima direita abaixo esquerda */
}

.social-logo-blk {
  filter: invert(100%);
}

/* Abaixo estão os estilos da barra superior de navegação */

.navbar {
  position: sticky;
  top: 0px;
  width: 100%;
  z-index:999; /* isso garante que a navbar se sobreponha nos itens da página */
}

ul {
    list-style-type: none;
    align-items: center;
    margin: auto;
    padding: 5px 20px;
    overflow: hidden;
    background-color: rgba(40,40,40,0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6), 0 4px 6px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
}

li a {
    display: block;
    border-radius: 10px;
    font-family: Helvetica;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    padding: 14px 20px;
    color: rgb(194, 194, 194);
    transition: color 0.3s, text-shadow 0.3s; /* efeito de transição suave no hover */
}

li a:hover {
    /*background-color: rgb(0,119,255);*/
    color:white;
    text-shadow: 0px 0px 15px white;
    font-weight: bold;  
    display: flex;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);*/
}

.menu_active {
    background-color: rgb(0,119,255);
    color: white;
    font-weight: bolder;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7), inset 0 4px 6px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 10px white;
    display: flex;
    align-items: center;
}


/* Abaixo estão os estilos relacionados ao carrossel de imagens */

/* Container do carrossel */
.slideshow-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}

/* Oculta as imagens por padrão */
.mySlides {
  display: none;
}

/* Botões anterior/próximo */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0px 0px 10px black;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Posiciona o botão "próximo" a direita */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Adiciona o fundo aos controles do slides ao posicionar o mouse */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Texto de legenda dos slides */
.text {
  color: white;
  background-color: rgba(0,0,0,0.5);
  text-shadow: 0px 0px 10px white;
  font-size: 15px;
  padding: 16px 12px;
  font-weight: normal;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

img {vertical-align: middle;}

/* Números */
.numbertext {
  color: #f2f2f2;
  background-color: rgba(0,0,0,0.5);
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Os círculos e indicadores de navegação */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: steelblue;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: lightsteelblue;
}

/* Animação de fade */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Reduz o tamanho do texto em telas menores */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }