* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #151514; 
    padding: 10px 40px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.div-logo img {
    height: 120px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 2rem;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff6b35;
}

.secao {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

.caixa-texto {
    background-color: #fff;
    padding: 50px;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.titulo {
    text-align: center;
    margin: 20px 0;
    font-size: 2.5rem;
}

.subtitulo {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #555;
}

.topico {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #ff6b35;
}

.informacao {
    margin-bottom: 15px;
    font-size: 1rem;
}

.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.faq-category {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ff6b35; 
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px; 
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
}

footer {
    padding: 40px;
    background-color: #141414;
    color: #e8e8e8;
    gap: 1rem;
}
.footer-top {
    text-align: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 auto;
    text-align: center;
}
.logo-footer {
    max-height: 200px;
    height: auto;
    width: auto;
}

footer small {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #b3bccec6;
    font-size: small;
}

small a {
    text-decoration: none;
    color: #e8e8e8;
}