/* 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;
}


section {
    text-align: center;
    color: #330092;
    font-size: 1.5rem;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

/* Bloco com imagem à esquerda */
.bloco-texto {
    flex-direction: row;
    background-color: #0a0185fa;
    border-radius: 50px;
    color:#fff;
    box-shadow: 0 4px 30px rgba(17, 0, 252, 0.466);
}

.bloco-texto img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    background-color: #ffffff;
}

.texto {
    flex: 1;
}

/* Lista + logo */
.lista-logo {
    flex-direction: row;
      background-color: #00a000;
    border-radius: 50px;
    color:#ffffff;
    box-shadow: 0 4px 30px rgba(3, 187, 49, 0.774);
}

.lista {
    flex: 1;
    text-align: left;
    
}

.lista ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 1.1rem;
}

.logo img {
    max-width: 200px;
    height: auto;
}

/* Responsivo */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .bloco-texto img,
    .logo img {
        max-width: 90%;
    }

    .lista {
        text-align: center;
    }

    .lista ul {
        padding-left: 0;
    }
}

.pdf-section {
    max-width:  1080px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.pdf-section h2 {
    margin-bottom: 0px;
    color: #330092;
}

.pdf-section iframe {
    width: 100%;
    height: 80vh;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin-bottom: 20px;
}

.botao-download {
    display: inline-block;
    background-color: #330092;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.botao-download:hover {
    background-color: #003fec;
}
.pdf-full {
    width: 100%;
    padding: 20px;
}

.pdf-full iframe {
    width: 100%;
    height: 90vh;
    border: none;
    border-radius: 10px;
}