.juridico {
    margin: 30px auto;
}

.juridico-toggle {
    width: 100%;
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.juridico-toggle .arrow {
    transition: transform 0.3s ease;
}

.juridicoContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 0 20px;
    margin-top: 10px;
}

.juridicoContent.open {
    max-height: 2000px;
    /* valor grande para expandir */
    padding: 20px;
}

.juridicoContent p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.legal-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.legal-modal-content {
    width: 70%;
    height: 70%;
    background: #222;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    padding: 20px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
}

.legal-modal-content h3 {
    color: #FFCC00;
    margin-bottom: 15px;
}

.legal-modal-body {
    flex: 1;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
    padding-right: 10px;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 15px;
    padding: 1%;
    cursor: pointer;
    font-size: 50px;
    font-weight: bold;
    color: #FFF;
    background-color: var(--secondary);
}
.close-btn:hover {
    color: #FFCC00;
}
