#inicial{
    text-align: center;
    color: white;
    margin-top: 30px;
    padding: 20px;
}
#inicial h1{
    font-size: 42px;
    margin-bottom: 15px;
}
#inicial h2{
    font-size: 25px;
    opacity: 0.9;
    margin: 0 auto;
    line-height: 1.6;
}
#motivo,
#incluso,
#desenvolvimento,
#perguntas {
    color: white;
    padding: 25px;
    border-radius: 30px;
    backdrop-filter: blur(2px);
    margin: 10px auto;
    width: 90%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background-color: rgba(64, 0, 104, 0.5);
    box-shadow: 0 10px 30px rgba(64, 0, 104, 0.7); /* dá profundidade */
    backdrop-filter: blur(1px);
    border: 1px solid rgb(95, 11, 95);
}
#motivo:hover,
#incluso:hover,
#desenvolvimento:hover,
#perguntas:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(64, 0, 104, 0.45);
}
#motivo h1,
#incluso h1,
#desenvolvimento h1,
#perguntas h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: white;
    border-left: 5px solid rgb(132, 0, 255);
    padding-left: 15px;
}
#motivo h2,
#incluso h2,
#desenvolvimento h2,
#perguntas h2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: rgb(220, 220, 220);
}
#motivo h3,
#incluso h3,
#desenvolvimento h3,
#perguntas h3 {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.7;
    padding-left: 20px;
    color: rgb(235, 235, 235);
}