.duvidas {
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--text-color);
    background-color: transparent;
    max-width: 1400px;
}

.duvidas .duvidasContent {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.duvidas .dropdown-section {
    width: 100%;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.dropdown-section {
    text-align: left;
}

.dropdown-section details {
    margin: 10px 0;
    width: 100%;
    background-color: var(--primary-dark);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;

}

.dropdown-section summary {
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.dropdown-section summary::after {
    content: "▼";
    font-size: 12px;
    margin-left: 10px;
    transition: 0.3s ease-in-out;
}

/* Transição do conteúdo dentro do details */
.dropdown-section details p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin: 0;
    padding: 0;
}

/* Quando aberto */
.dropdown-section details[open] p {
    max-height: 500px;
    /* aumenta se tiver textos maiores */
    opacity: 1;
    padding: 0.5rem 0 0;
}