@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

.section-benefits {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('/img/fulltechnexus/fullstack/fondo4.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 50px 20px;
}

.benefits-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.benefits-title {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.benefits-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: white;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 10px;
}

.benefits-footer {
    margin-top: 30px;
    width: 100%;
}

.linea-rosa {
    background: url('/img/fulltechnexus/fullstack/lineaRosa.png') repeat-x center center;
    background-size: cover;
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: white;
    text-align: center;
    max-width: 1200px;
    line-height: 1.6;
    margin: 0;
    font-weight: bold; 
}


@media (max-width: 768px) {
    .benefits-container {
        max-width: 90%;
    }

    .benefits-title {
        width: 90%;
    }

    .benefits-list {
        font-size: 16px;
        padding-left: 10px;
    }

    .footer-text {
        font-size: 14px;
        max-width: 90%;
    }
}