/* INÍCIO SEÇÃO DÚVIDAS */
.duvidas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}
/* FIM SEÇÃO DÚVIDAS */

/* INÍCIO CONTAINER DÚVIDAS */
.duvidas-div {
    width: 100%;
    max-width: 840px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* FIM CONTAINER DÚVIDAS */

/* INÍCIO TÍTULOS */
.duvidas-div1 h2 {
    font-size: 3.5rem;
    color: #4dffff;
    background-color: transparent;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.duvidas-div2 h2 {
    font-size: 1.5rem;
    color: #ccc;
    background-color: transparent;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}
/* FIM TÍTULOS */

/* INÍCIO ACORDEÃO (DETAILS) */
.details {
    background-color: #131313;
    width: 100%;
    max-width: 800px;
    min-height: 70px;
    border-radius: 12px;
    margin: 12px 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #252525;
}

.details:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: #4dffff;
}

.details[open] {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* FIM ACORDEÃO (DETAILS) */

/* INÍCIO SUMMARY */
.details summary {
    font-size: 1.2rem;
    color: #e0e0e0;
    background-color: #131313;
    padding: 22px 25px 22px 60px;
    list-style: none;
    position: relative;
    transition: all 0.8s ease;
    border-radius: 12px;
    font-weight: 500;
}

.details summary:hover {
    background-color: #1a1a1a;
    color: #4dffff;
}

.details[open] summary {
    background-color: rgb(18, 18, 18);
    color: #4dffff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/* FIM SUMMARY */

/* INÍCIO ÍCONE PERSONALIZADO */
.details summary::after {
    content: '▶';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #4dffff;
    transition: all 0.8s ease;
    font-weight: 300;
}

.details[open] summary::after {
    content: '▼';
    transform: translateY(-50%);
}
/* FIM ÍCONE PERSONALIZADO */

/* INÍCIO CONTEÚDO (PARÁGRAFO) */
.details p {
    font-size: 1.1rem;
    color: #b0b0b0;
    background-color: #000;
    padding: 0 25px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, padding 0.8s ease;
    line-height: 1.6;
}

.details[open] p {
    padding: 0 25px 25px 25px;
    max-height: 500px;
    animation: fadeIn 0.8s ease-out;
}
/* FIM CONTEÚDO (PARÁGRAFO) */

/* INÍCIO ANIMAÇÕES */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* FIM ANIMAÇÕES */

/* INÍCIO RESPONSIVIDADE */
@media (max-width: 768px) {
    .duvidas-div1 h2 {
        font-size: 2.5rem;
    }

    .duvidas-div2 h2 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .details {
        width: 100%;
        min-height: 65px;
    }

    .details summary {
        padding: 18px 20px 18px 50px;
        font-size: 1.1rem;
    }

    .details p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .details[open] p {
        padding: 0 20px 20px 20px;
    }

    .details summary::after {
        left: 20px;
        font-size: 1.5rem;
    }
}
/* FIM RESPONSIVIDADE */