/* Estilos para o modal */

@media screen and (min-width: 375px) {
    .modal-duvidas:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        color: #fff;
        background: #CCC;
        width: 20px;
        text-align: center;
        border-radius: 50%;
    }
}

@media screen and (min-width: 750px) {
    .modal-duvidas:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    -webkit-transform: translate(0, -500%);
    -ms-transform: translate(0, -500%);
    transform: translate(0, -500%);
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.modal-duvidas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-conteudo {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
}

summary {
    display: flow-root;
    background: #0072ED;
    color: #fff;
    border-radius: 8px;
    padding: 3px;
    cursor: pointer;
    font-weight: 40;
    justify-content: left;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary:before {
    content: "+";
    font-size: 20px;
    font-weight: bold;
    margin: 0 5px;
    padding: 0;
    width: 900px;
    text-align: left;
}

details[open] summary:before {
    content: "-";
    align-items: left;
}

.margem {
    margin-left: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #fff;
    background: #7A7A7A;
    width: 20px;
    text-align: center;
    border-radius: 50%;
}