.topo-politica {
    background: #F5F5F5;
    padding: 40px 0 50px;
    margin-bottom: 40px;
}

.topo-politica .titulo-pagina {
    font-size: 42px;
    font-weight: 600;
    margin-top: 20px;
    margin-left: 70px;
    color: #000;
    line-height: 40px;
}

.politica-page {
    max-width: 900px;
    margin: 0 auto;
}

.texto-politica {
    font-size: 16px;
    line-height: 22px;
    max-height: 350px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.texto-politica::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.texto-politica.aberto {
    max-height: 5000px;
}

.texto-politica.aberto::after {
    opacity: 0;
}

.btn-ler-mais {
    margin-top: 25px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666666;
}

.content-wrapper {
    max-width: 1074px;
    margin: 0 auto;
}

.politica-page {
    margin-bottom: 85px
}

@media (max-width: 768px) {
    .topo-politica .titulo-pagina {
        font-size: 26px;
        margin-left: 23px;
        line-height: 32px;
    }
}