.section_scroll {
    max-width: 100vw;
    position: relative;
    margin-left: calc(-50vw + 50%);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5%;
    margin-bottom: 5%;
}

.img_scroll {
    width: 85%;
    height: auto;
    margin: auto;
}

.img_scroll img {
    height: auto;
    width: 100%;
    display: block;
}

.section_scroll .container {
    width: 95%;
    margin: 0 auto;
}

.section_scroll .texto h2 {
    color: var(--neutro2);
    margin-top: 0px;
    margin-bottom: calc(var(--tamanio-base) * 1.75rem);
}

.section_scroll .texto {
    width: 85%;
    margin: auto;
}

.text_block {
    width: 100%;
    max-width: 90%;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 1.5;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0) transparent;
    font-weight: 300;
    /*transition: max-height 0.3s ease;*/
    /* Altura inicial que será ajustada por JS */
    /*max-height: 300px;*/
    max-height: none !important;
}

.text_block::-webkit-scrollbar {
    width: 6px;
}

.text_block::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.text_block::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.text_block::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (min-width: 768px) {
    .section_scroll .container {
        width: 80%;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .section_scroll .texto {
        width: 45%;
        margin: 0;
    }
    
    .img_scroll {
        width: 50%;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .section_scroll .container {
        width: 85%;
        gap: 40px;
    }
    
    .section_scroll .texto {
        width: 60%;
    }
    
    .img_scroll {
        width: 40%;
    }
}

@media (min-width: 1440px) {
    .section_scroll .container {
        width: 85%;
    }
    
    .img_scroll {
        width: 35%;
    }
    
    .section_scroll .texto {
        width: 65%;
    }
}

@media (max-width: 767px) {
    .section_scroll .texto,
    .img_scroll {
        width: 100%;
    }
    
    .section_scroll .container {
        width: 95%;
        flex-direction: column;
    }
    
    .img_scroll {
        margin-bottom: 20px;
    }
}