* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #d9d5d5e4; /* Cinza claro para o fundo */
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
}
.b {
    font-family: 'Poppins', sans-serif;
    color: #4b0082;
    font-size: 28px;
}

.text-container {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
}

.text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: .15em solid #4b0082; /* Roxo escuro */
    box-sizing: border-box;
}

.cursor {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 1.5em;
    background-color: #4b0082; /* Roxo escuro */
    animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #4b0082; } /* Roxo escuro */
}

.rodape {
    background-color: #3e73c2; /* Roxo escuro */
    position: sticky;
    bottom: 0;
    width: 100%;
    height: 40px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 2%;
}

.video {
    margin-left: auto;
    margin-right: auto;
}

.imgs {
    width: 30%;
    height: 12%;
    border: 2px solid #4b0082; /* Roxo escuro */
    margin: 10px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave para aumento e sombra */
}

.imgs:hover {
    transform: scale(1.2);
    box-shadow: 0px 4px 8px rgba(75, 0, 130, 0.3); /* Sombra roxa suave */
}
#title {
    font-family: 'Montserrat', serif;
    font-size: 48px;
    color: #4b0082; /* Roxo elegante para o título */
    text-align: center;
}

#b {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: center;
    color: black;
}

.p {
    font-family: 'Poppins', sans-serif;
    color: #333; /* Cinza escuro */
    font-size: 17px;
    text-align: justify;
    text-indent: 20px;
}
.ordem{
    font-family: 'Poppins', sans-serif;
    color: #333; /* Cinza escuro */
    font-size: 17px;
    text-align: justify;
    list-style-type: circle;
}

#logo {
    filter: brightness(0.7) drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
    animation: brilho 4.3s alternate;
}
  
@keyframes brilho {
    0% {
      box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
      filter: brightness(1) drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2));
    }
    100% {
      box-shadow: 0px 0px 20px rgba(223, 14, 129, 0.8);
      filter: brightness(1.5) drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.4));
    }
}

.principal {
    background-color: #4c7ecedd;
     /* Roxo escuro */
    display: flex;
    justify-content: space-between;
    z-index: 2;
    height: 102px;
    align-items: center;
    padding: 0 20px;
}

.principal li {
    display: inline-block;
    background-color: #6f008bc2;
     /* Azul calmo */
    border-radius: 30px;
    margin: 8px;
    transition: all 0.3s ease;
}

.principal li a {
    display: block;
    color: #ffffff; /* Texto branco */
    text-decoration: none;
    padding: 12px;
    margin: 3px;
     transition: all 0.3s ease; 
}

.principal li:hover {
    background: linear-gradient(90deg, #3e73c2 0%, #4b0082 100%); /* Mistura de azul e roxo */
 transform: scale(1.05); 
 border-radius: 0px;
}
.principal li a:hover {
    background: linear-gradient(90deg, #3e73c2 0%, #4b0082 100%); /* Mistura de azul e roxo */
 transform: scale(1.05); 
 border-radius: 0px;
}

.dropdown-menu {
    position: absolute;
    display: none;
    z-index: 3;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #ffffff; /* Texto branco */
    background: linear-gradient(90deg, #3e73c2 0%, #4b0082 100%); /* Azul e roxo */
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #7b9cc5; /* Azul claro no hover */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

img {
    width: 170px;
    height: 80px;
    margin: 10px;
    padding: 0;
}

.box {
    margin-top: 20px;
    width: 96%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    background-color: #f8e4cd6b; /* Cinza mais suave */
    border: none;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7); /* Sombra leve */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.box:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9); /* Sombra mais forte no hover */
}

.menu-toggle {
    display: none;
}

.menu-icon {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #3e73c2; /* Azul calmo */
    cursor: pointer;
    padding: 1rem;
    display: none;
}

.menu {
    display: none;
    background-color: #4b0082; /* Roxo escuro */
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #444;
}

.menu ul li a {
    text-decoration: none;
    color: #ffffff; /* Texto branco */
    display: block;
}

.menu ul li a:hover {
    background-color: #3e73c2; /* Azul suave no hover */
}

.submenu-toggle {
    display: none;
}

.submenu-label {
    cursor: pointer;
    display: block;
    padding: 15px;
    text-align: center;
    background-color: #3e73c2; /* Azul calmo */
    color: #ffffff;
}

.submenu {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

#menu-toggle:checked ~ .menu {
    display: block;
}

#repertorios-toggle:checked + .submenu-label + .submenu,
#estruturas-toggle:checked + .submenu-label + .submenu,
#conectivos-toggle:checked + .submenu-label + .submenu,
#temas-toggle:checked + .submenu-label + .submenu {
    display: block;
    opacity: 1;
    max-height: 500px;
}

/* Responsividade */
@media (max-width: 700px) {
    .video {
        width: 200px;
        height: 250px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .box {
        max-width: 120%;
    }
    .imgs {
        width: 90%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
        margin: 7%;
    }

    .imgs:hover {
        transform: scale(1.2);
        box-shadow: 0px 4px 8px rgba(98, 0, 143, 0.753);
        margin: 5%;
        margin-left: auto;
        margin-right: auto;
    }

    nav, .e {
        flex-direction: column;
    }

    .e {
        text-align: center;
        margin: 0px;
        height: 0px;
        display: none;
    }

    h1 {
        margin: 10px;
    }

    button {
        display: flex;
    }

    li, ul {
        width: 100%;
    }

    .dropdown-menu {
        position: relative;
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .menu {
        display: none;
        background: linear-gradient(90deg, #3e73c2 0%, #1a0146 100%);
        border-radius: 50px;
    }

    .menu ul li {
        padding: 15px;
        text-align: center;
        border: none;
        background-color: #2a119738;
        border-radius: 6px;
    }

    .menu ul li a:hover {
        background-color: rgba(63, 2, 132, 0.874);
        border-radius: 55px;
        padding: 8px;
    }

    .submenu-label {
        cursor: pointer;
        display: block;
        padding: 15px;
        text-align: center;
        background: linear-gradient(90deg, #306cc7de 0%, #190877 100%);
        border-radius: 55px;
    }
}

.video {
    position: relative;
    width: 100%; /* O vídeo ocupará 100% da largura do contêiner pai */
    max-width: 600px; /* Limite máximo de largura */
    margin: 20px auto; /* Centraliza o vídeo */
    aspect-ratio: 16 / 9; /* Define a proporção 16:9 */
    background: #000; /* Fundo preto para destaque */
    border-radius: 8px; /* Bordas arredondadas */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Sombra para estilo */
}

.video iframe {
    width: 100%;
    height: 100%;
    border: none; /* Remove bordas */
    border-radius: 8px; /* Aplica arredondamento no vídeo */
}
  
  #an {
    width: 300px; /* Tamanho inicial */
    transition: transform 0.4s ease-in-out; /* Transição suave */
    cursor: pointer; /* Cursor para indicar interatividade */
  }
/* Estilo para os links de âncora */
.an a {
    font-size: 22px; /* Tamanho maior para o texto */
}

.an a:hover {
    text-decoration: underline; /* Apenas sublinha ao passar o mouse */
    color: #007bff; /* Cor azul no hover */
}

.vw-plugin-wrapper {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

.vw-access-button {
    background-color: #005fcc;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.vw-access-button:hover {
    background-color: #0047a1;
}

/* Foco visível no botão para acessibilidade */
button:focus, .vw-access-button:focus {
    outline: 3px solid #ffcc00;
    outline-offset: 2px;
}
