/* Fundo com imagem no topo */
.banner-topo {




    position: relative;
    color: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Sobreposição escura para contraste */
.overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.356), rgba(0, 0, 0, 0));
    width: 100%;
    height: 100%;
    padding-top: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Título centralizado */
.titulo-site {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1.2s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MENU FIXO NO TOPO */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(51, 0, 146);
    /* fundo com transparência */
    border-radius: 0 0 10px 10px;
    /* cantos arredondados abaixo */
    z-index: 1000;
    backdrop-filter: blur(20px);
    /* efeito vidro */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Estilo do menu */
.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu>li {
    position: relative;
    margin: 0 5px;
}

.menu a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    background-color: #330092;
    /* cor normal */
    border-radius: 8px;
    transition: background-color 0.3s;
}

.menu>li:hover>a {
    background-color: #003fec;
    /* hover */
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0f02c5;
    min-width: 180px;
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submenu li {
    width: 100%;
}

.submenu a {
    background-color: #330092;
    color: white;
    padding: 12px 16px;
    border-radius: 0;
}

.submenu li:hover a {
    background-color: #4c3aec;
}

/* Mostrar submenu */
.dropdown:hover .submenu {
    display: block;
}
    body {
    margin: 0;
    padding: 0;
    background-image: url('Fundo.png'); /* Caminho da imagem */
    background-size: cover;        /* Faz a imagem cobrir toda a tela */
    background-repeat: no-repeat;  /* Evita repetição */
    background-position: center;   /* Centraliza a imagem */
    background-attachment: fixed;  /* Faz a imagem ficar fixa ao rolar a página */
    font-family: 'Roboto', sans-serif;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.6); /* branco com transparência */
    z-index: -1;
}

.mascote-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #330092;
  border-radius: 50px;
  color:#fff;
}

.mascote-texto {
  flex: 1;
  text-align: left;
  font-size: 1.2rem;
}

.mascote-imagem img {
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgb(0, 195, 255);
}

/* Responsivo */
@media (max-width: 768px) {
  .mascote-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .mascote-imagem img {
    max-width: 70%;
  }
}

.baloes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.balao {
  background-color: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 4px 10px rgb(5, 9, 255);
  transition: transform 0.2s;
}

.balao:hover {
  transform: translateY(-5px);
}

.balao img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
  background-color: #ffffff00;
}

.balao p {
  font-size: 1rem;
  color: #333;
}

/* Responsivo */
@media (max-width: 1024px) {
  .baloes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .baloes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .baloes-grid {
    grid-template-columns: 1fr;
  }
}

