.faq-banner {
width: 100%;
background-color: #FF9800;
text-align: center;
padding:0px;
height: 20vh;
justify-content: center;
display: flex;
text-align: center;
align-items: center;
}

.faq-banner h1 {
font-size: 2.5rem;
color: white;
font-weight: bold;
text-transform: uppercase;
margin: 0;
}

/* FAQ Container */
.faq-container {
max-width: 800px;
margin: 30px auto;
padding: 0 20px;
}

.faq-item {
border-bottom: 1px solid #ddd;
margin-bottom: 10px;
padding: 15px 0;
}

.faq-question {
background-color: #FF9800;
color: white;
border: none;
padding: 15px 20px;
width: 100%;
text-align: left;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s;
}

.faq-question:hover {
background-color: #E91E63;
}

.faq-icon {
font-size: 1.5rem;
transition: transform 0.3s ease;
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
padding: 0 15px;
font-size: 1rem;
color: #555;
}

.faq-item.open .faq-answer {
max-height: 200px; /* Altura máxima ajustável */
padding-top: 10px;
}

.faq-item.open .faq-icon {
transform: rotate(45deg); /* Ícone gira ao abrir */
}

/* Responsividade */
@media (max-width: 768px) {
.faq-banner h1 {
 font-size: 2rem;
}

.faq-question {
 font-size: 1rem;
 padding: 10px 15px;
}
}

