/* Estilos gerais */
body { 
    background-color: #FCEAD8; 
    font-family: Barlow, sans-serif;
}

/* .container {
background-color: #FCEAD8;
padding: 20px;cd
} */

h1 {
    color: #264263;
    text-align: center;
    font-family: 'Big Shoulders', sans-serif;
    font-weight: 800;
    margin-bottom: 30px;
}

/* Estilo para as seções de FAQ */
.faq-section {
    margin: 20px 0;
    background: #FCF5EE;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    cursor: pointer;
    padding: 20px;
    position: relative;
    font-weight: 600;
    color: #264263;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    margin: 0;
    text-transform: none;
}

.faq-question::before {
    content: '▼';
    margin-right: 15px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.faq-question.collapsed::before {
    transform: rotate(-90deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #212529;
    line-height: 1.6;
    text-align: justify;
}

.faq-answer.open {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

.intro-text {
    color: #264263;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.support-link {
    color: #A32C00;
    text-decoration: none;
    font-weight: 600;
}

.support-link:hover {
    text-decoration: underline;
}
