.faq-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.faq-question {
    background-color: #f5f5f5;
    cursor: pointer;
    padding: 13px;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.3s;
}

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

.faq-answer {
    display: none;
    padding: 13px;
    background-color: #fff;
    font-size: 13px;
    line-height: 1.6;
}

.faq-conclusion {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Versão MAIOR e mais VISÍVEL para público mais velho */
.phone-hint {
    margin-top: 12px;
    padding: 15px 18px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border: 2px solid #4CAF50;
    border-radius: 8px;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.phone-hint small {
    font-size: 14px;
    color: #d32f2f;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

/* Adiciona um pequeno ícone de informação */
.phone-hint::before {
    content: "ℹ️";
    margin-right: 5px;
    font-size: 18px;
}

/* Versão responsiva para mobile */
@media (max-width: 768px) {
    .phone-hint {
        font-size: 15px;
        padding: 12px 15px;
    }
    
    .phone-hint small {
        font-size: 13px;
    }
}