body {
    font-family: "Lucida Console", Monaco, monospace;
    font-weight: normal;
    background-color: #ffffff;
    width: 100%;
}

.header {
    font-family: "Titan One", sans-serif;
    background-color: #fefefe;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
}

.nav-menu ul{
    margin-left: 50px;
    list-style: none;
    display: flex;
    gap: 90px;
    margin-top: 15px;
    font-size: 19px;
}

.logo{
    margin-top: 5px;
    margin-left: 5px;
}

.nav-menu ul li.dropdown {
    position: relative;
    z-index: 1000;
}

.nav-menu ul li a{
    text-decoration: none;
    color: #3a1b6c;
}

.nav-menu ul li a:hover{
    color: #389731;
}

.nav-menu ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fefefe;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-menu ul li .dropdown-menu li {
    padding: 12px;
    background-color: #ffffff;
    white-space: nowrap;
}

.nav-menu ul li .dropdown-menu li a {
    color: #389731;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    transition: color 1s;
    display: block;
    text-decoration: none;
}

.nav-menu ul li .dropdown-menu li a:hover {
    color: #3a1b6c;
    
}

.nav-menu ul li.dropdown:hover .dropdown-menu {
    display: block;
}

.search-container {
    margin-left: 50px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    border: 1px solid #3a1b6c; 
    border-radius: 25px; 
    padding: 5px; 
    width: 100%; 
    max-width: 400px; 
    background-color: #ffffff; 
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 5px;
    font-size: 14px;
    background-color: transparent; 
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    outline: none;
}

.search-button img {
    width: 28px; 
    height: 26px;
}

.icons img {
    width: 12%;
    margin-top: 6px;
    margin-left: 30px;
}


@media (max-width: 768px) {
    .header {
        flex-direction: column; 
        align-items: flex-start; 
        padding: 10px;
    }

    .nav-menu ul {
        flex-direction: column; 
        gap: 10px; 
        width: 100%; 
    }

    .nav-menu ul li {
        width: 100%; 
    }

    .search-container {
        margin: 10px 0; 
        width: 100%; 
    }

    .search-input {
        font-size: 16px; 
    }

    .icons {
        margin-top: 10px; 
        display: flex; 
        gap: 10px; 
        width: 100%; 
        justify-content: flex-start; 
    }
}

@media (max-width: 480px) {
    .nav-menu ul {
        gap: 5px; 
    }

    .search-input {
        font-size: 14px; 
    }

    .search-button img {
        width: 20px; 
        height: 20px;
    }

    .icons img {
        width: 30px; 
        height: 30px;
    }
}

.banner img{
    width: 100%;
   
}


.tamanho{
    width: 70%;
}


.textao{
    text-align: justify;
    margin: 30px;
    font-size:large;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #58079b;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #36942b

}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #58079b;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #36942b

}


#toggleText {
    margin-top: 20px;
}

.video-container {
    width: 80%;
    max-width: 800px; /* Limite máximo da largura do vídeo */
}

video {
    width: 100%; /* O vídeo ocupará toda a largura do contêiner */
    border-radius: 8px; /* Bordas arredondadas para o vídeo */
}

p1{
    color:#58079b;
    font-weight: bold;
}


.faq-container {
    max-width: 90%;
    margin: auto;
    margin-top: 20px;
}

.faq-card {
    background: #8c67c7;
    border-radius: 8px;
    margin-bottom: 05px;
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card p1 {
    margin: 0;
    cursor: pointer;
    color: #000000;
    font-weight: lighter;
}


.faq-card p1:hover {
    margin: 0;
    cursor: pointer;
    color: #000000;
    font-weight: bolder;
    
}

.faq-card p7 {
    display: none; /* Inicialmente ocultar o texto */
    margin-top: 10px;
   
}

.faq-card:hover {
    background-color: #9dffa5;
    color:black;
}

.faq-card:hover p7 {
    display: block; /* Mostrar o texto ao passar o mouse */
    color: rgb(0, 0, 0);
}

main {
    max-width: 90%;
    margin: 20px auto;
   }

p3 {
    color: #000000;
    font-size: 19px;
    font-weight: bold;
}

p5{
    color: #58079b;
    font-size: 17px;
    background-color: #fbf7f7;
    padding: 5px;
    border-radius: 12px;
    width: 99%;
}
.info, .form {
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 0px 0;
    font-size: 16px;

}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
    max-width: 60%;
}

input, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 10px;
    padding: 10px;
    background: #580bc4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 60%;
}

button:hover {
    background: #7769f7;
    transform: scale(1.1);
}



/*rodapé*/
.footer {
    background-color: #000000;
    color: #fff;
    padding: 30px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 200px; 
    padding: 20px;
    box-sizing: border-box; 
  }
  
  .footer-section h3,
  .footer-section h4,
  .footer-section h5 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #e2c5f7;
    font-weight: bold;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0; 
  }
  
  .footer-section ul li {
    margin-bottom: 12px;
    font-size: 16px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #a77dc4;
  }
  
  .footer-section p {
    font-size: 16px;
  }
  
  .footer-section form {
    font-size: 16px;
  }
  
  .footer-section input[type="email"] {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    margin: 10px 0; 
  }
  
  .bottomfooter {
    width: 38%;
    padding: 2px 10px;
    background-color: #c586f1;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .bottomfooter:hover {
    background-color: #5a0366;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ffffff;
  }
  
  .footer-bottom p {
    font-size: 16px;
    margin-left: 60%;
  }
  
  .logodesenvolvedora {
    margin-top: -40px; 
    margin-left: 6%;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section {
        margin-bottom: 20px; 
        text-align: center; 
    }
  
    .footer-section h3, .footer-section h4, .footer-section h5 {
        margin-left: 0; 
    }
    
    .footer-bottom p {
        margin-left: 0; 
    }
  }

.containercentral {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
}

.cardcentral {
    width: 210px;
    height: 150px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #3a1b6c;
    border-radius: 10px;
    text-align: center;
    color: #3a1b6c;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.cardcentral a{
    text-decoration: none;
}

/* Efeito hover */
.cardcentral:hover {
    background-color: #ffffff;
    border: 2px solid #36942b;
}

/* Estilo do ícone */
.cardcentral img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: #3a1b6c;
}

b{
    color: #3a1b6c;
    font-size: 25px;
}