/* 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;
}


.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.galeria img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.05);
}
