#lgpd {
    padding: 15px 0 100px;
}
#lgpd > .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
}
#lgpd .sidebar {
    background: #000;
    color: #fff;
    flex-shrink: 0;
    order: 2;
    width: 360px;
    padding: 20px 32px;
    position: sticky;
    top: 12px;
}
#lgpd .sidebar ol {
    counter-reset: parent;
    list-style: none;
    padding-left: 30px;
}
#lgpd .sidebar ol > li {
    counter-increment: parent;
    line-height: 1.5;
    margin-bottom: 4px;
    position: relative;
}
#lgpd .sidebar ol > li::before {
    content: "1." counters(item, ".") " ";
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    left: -35px;
    text-align: right;
    top: 2px;
    width: 25px;
}
#lgpd .sidebar ol > li > a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 1px 0;
    line-height: 1.4;
}
#lgpd .sidebar ol > li > a:hover {
    color: #616161;
}
#lgpd .sidebar ol > li > ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
    margin-top: 4px;
    margin-bottom: 6px;
}
#lgpd .sidebar ol > li > ol li {
    font-size: 16px;
    counter-increment: item;
    position: relative;
}
#lgpd .sidebar ol > li > ol li a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 2px 0;
    line-height: 1.45;
    transition: color 0.15s;
}
#lgpd .sidebar ol > li > ol li a:hover {
    color: #ccc;
}
#lgpd .sidebar ol > li > ol li::before {
    content: "1." counters(item, ".") " ";
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    left: -35px;
    text-align: right;
    top: 2px;
    width: 25px;
}
#lgpd .texto {
    background: #FBFBFB;
    flex: 1;
    font-size: 16px;
    order: 1;
    min-width: 0;
    padding: 32px;
}
#lgpd .texto .titulo {
    background: #000;
    color: #fff;
    padding: 24px 32px;
    margin: -32px -32px 32px;
}
#lgpd .texto .titulo h2 {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}
#lgpd .texto .titulo p {
    color: #fff;
    font-size: 16px;
}
#lgpd .texto .titulo p:last-child {
    margin: 0;
}
#lgpd .texto h3 {
    color: #000;
    font-size: 19px;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 16px;
}
#lgpd .texto p {
    color: #616161;
    line-height: 150%;
    margin-bottom: 16px;
}
#lgpd .texto p strong {
    color: #000;
}
#lgpd .texto p a {
    color: #006FE9;
    font-weight: bold;
    text-decoration: none;
    text-underline-offset: 5px;
}
#lgpd .texto p a:hover {
    text-decoration: underline;
}
#lgpd .texto p a.mail {
    align-items: center;
    display: flex;
    gap: 8px;
}
#lgpd .texto hr {
    border: none;
    border-top: 1px solid #dfdfdf;
    margin: 48px 0;
}
#lgpd .texto ul,
#lgpd .texto ol {
    list-style: disc;
    margin-bottom: 18px;
    padding-left: 18px;
}
#lgpd .texto ul li,
#lgpd .texto ol li {
    color: #616161;
    line-height: 150%;
    position: relative;
    margin-bottom: 8px;
}
#lgpd .texto table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 20px;
    font-size: 13px;
}
#lgpd .texto table th {
    font-weight: 700;
    text-align: left;
    padding: 10px 0;
    font-size: 14px;
}
#lgpd .texto table td {
    padding: 10px 14px;
    color: #616161;
    border: 1px solid #dfdfdf;
    vertical-align: middle;
    line-height: 1.6;
}
#lgpd .texto .formulario {
    margin-top: 24px;
}
#lgpd .texto .formulario .row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
#lgpd .texto .formulario .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    flex: 1;
    width: 100%;
}
#lgpd .texto .formulario .form-group.w-1-2 {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
}
#lgpd .texto .formulario .label,
#lgpd .texto .formulario label {
    color: #616161;
    font-size: 13px;
    font-weight: 600;
    line-height: 130%;
}
#lgpd .texto .formulario input[type="text"],
#lgpd .texto .formulario input[type="email"],
#lgpd .texto .formulario input[type="tel"],
#lgpd .texto .formulario input[type="file"],
#lgpd .texto .formulario select,
#lgpd .texto .formulario textarea {
    border: 1px solid #dfdfdf;
    padding: 16px;
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 19px;
    color: #000;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}
#lgpd .texto .formulario input:focus,
#lgpd .texto .formulario select:focus,
#lgpd .texto .formulario textarea:focus {
    border-color: #000;
}
#lgpd .texto .formulario input::placeholder,
#lgpd .texto .formulario textarea::placeholder {
    color: #afafb1;
}
#lgpd .texto .formulario textarea {
    resize: vertical;
    min-height: 120px;
}
#lgpd .texto .formulario .columns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    background: #fff;
    border: 1px solid #dfdfdf;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 16px;
    padding: 16px;
}
#lgpd .texto .formulario .columns .form-group {
    gap: 12px;
}
#lgpd .texto .formulario .columns label {
    color: #AFAFB1;
    font-size: 19px;
    font-family: 'Darker Grotesque', sans-serif;
}
#lgpd .texto .formulario .form-check {
    font-size: 13px;
    color: #616161;
    cursor: pointer;
}
#lgpd .texto .formulario .form-check label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
#lgpd .texto .formulario .form-check input[type="checkbox"],
#lgpd .texto .formulario .form-check input[type="radio"] {
    accent-color: #000;
    border: 1px solid #D2D5DA;
    cursor: pointer;
    height: 20px;
    flex-shrink: 0;
    width: 20px;
}
#lgpd .texto .formulario button[type="submit"],
#lgpd .texto .formulario .btn-submit {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000;
    color: #fff;
    cursor: pointer;
    border: none;
    font-size: 19px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    margin: 40px 0;
    transition: opacity 0.15s;
    width: 100%;
}
#lgpd .texto .formulario button[type="submit"]:hover {
    opacity: 0.8;
}
#lgpd .texto #faq {
    margin-top: 40px;
}
#lgpd .texto #faq > h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
#lgpd .texto #faq > h3::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url('../images/tit-faq.png') center / contain no-repeat;
    flex-shrink: 0;
}
#lgpd .texto #faq dl {
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 24px;
}
#lgpd .texto #faq dl dt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    user-select: none;
}
#lgpd .texto #faq dl dt::after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background: url('../images/seta-faq.png') center / contain no-repeat;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
#lgpd .texto #faq dl dd {
    display: none;
    font-size: 15px;
    color: #616161;
    line-height: 1.7;
    padding-top: 10px;
}
#lgpd .texto #faq dl.open dt::after {
    transform: rotate(180deg);
}
#lgpd .texto #faq dl.open dd {
    display: block;
}

/* Responsive */
@media (max-width: 1080px) {
    #lgpd > .container {
        flex-direction: column-reverse;
        gap: 32px;
    }
    #lgpd .sidebar {
        width: 100%;
        position: static;
    }
}
@media (max-width: 640px) {
    #lgpd .texto .formulario .row {
        flex-direction: column;
    }
    #lgpd .texto .formulario .form-group.w-1-2 {
        flex: 1;
        max-width: none;
        width: 100%;
    }
    #lgpd .texto .formulario .columns {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    #lgpd {
        padding: 32px 0 56px;
    }
    #lgpd .texto {
        background: none;
        padding: 0;
    }
    #lgpd .texto .titulo {
        margin: 0 0 24px;
    }
    #lgpd .texto .titulo h2 {
        font-size: 27px;
    }
    #lgpd .texto table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
