.twooptionsection {
    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;
}

.twooptionsection .container .texto .txt_scroll{
    font-weight: 300;
}

.img_scroll img {
    height: auto;
    width: 100%;
    display: block;
}

.twooptionsection .container {
    width: 95%;
    margin: 0 auto;
}

.twooptionsection .texto h2 {
    color: var(--neutro2);
    margin-top: 0px;
    margin-bottom: calc(var(--tamanio-base) * 1.75rem);
}

.twooptionsection .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;
}

.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);
}

.button-banner_ofertas_CTA-default-Boton{
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color1);
    color: var(--neutro1);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0.375rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.icon-banner_ofertas_CTA-default-Icono{
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
    border: 0;
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive Design */

@media (max-width: 425px){
    .twooptionsection .container .texto .txt_scroll{
        margin-bottom: 30px;
    }
    .twooptionsection .container .img_scroll{
        margin-top: 50px;
    }
}
@media (min-width: 768px) {
    .twooptionsection .container {
        width: 80%;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    
    .twooptionsection .texto {
        width: 50%;
        margin: 0;
    }
    
    .img_scroll {
        width: 50%;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .twooptionsection .container {
        width: 85%;
        gap: 40px;
    }
    
    .twooptionsection .texto {
        width: 55%;
    }
    
    .img_scroll {
        width: 45%;
    }
}

@media (min-width: 1440px) {
    .twooptionsection .container {
        width: 85%;
    }
    
    .img_scroll {
        width: 45%;
    }
    
    .twooptionsection .texto {
        width: 55%;
    }
}

@media (max-width: 767px) {
    .twooptionsection .texto,
    .img_scroll {
        width: 100%;
    }
    
    .twooptionsection .container {
        width: 95%;
        flex-direction: column;
    }
    
    .img_scroll {
        margin-bottom: 20px;
    }
}
