/* css/body.css */
@import url('https://fonts.googleapis.com/css2?family=Niramit:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
    margin: 0;
    font-family: 'Niramit', sans-serif;
    background-color: #C2F5DF; /* verde escuro */
    color: #000;
}

.illust-faq {
    width: 400px; 
    position: absolute; 
    top:-80px;
    right: 0;
    z-index: 100;
}

/* Responsivo */
@media (max-width: 768px) {
    .illust-faq {
        width: 235px;
    }
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #FFF; /* verde médio */
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #b2e9d3;
}

.faq-answer {
    background-color: #EAFFF5; /* verde claro */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 15px;
}

.faq-question.active + .faq-answer {
    padding: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
    .wrapper {
        padding: 10px;
    }
}
