.diseñoweb_section1 {
    width: 100%;
    background-color: #ffffff;
}

.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 145px 80px;
    background-color: #ffffff;
    transition: background-color 0.5s ease;
}

.info-left {
    width: 60%;
    padding-right: 20px;
}

.info-right {
    width: 40%;
}

.main-title {
    font-size: 40px;
    color: #AE0000;
    margin: 0;
    transition: color 0.5s ease;
}

.sub-title {
    color: #333333;
    font-size: 72px;
    margin: 10px 0;
    line-height: 72px;
    transition: color 0.5s ease;
}

.separator {
    width: 60px;
    height: 4px;
    background-color: #AE0000;
    margin: 10px 0;
    transition: background-color 0.5s ease;
}

.description {
    font-size: 24px;
    color: #555555;
    line-height: 1.6;
    transition: color 0.5s ease;
}

.info-right img {
    display: flex;
    margin: auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .info-left, .info-right {
        width: 100%;
        padding: 0;
    }

    .main-title {
        font-size: 32px;
        text-align: center;
    }

    .sub-title {
        font-size: 48px;
        text-align: center;
        line-height: 52px;
    }

    .description {
        font-size: 18px;
        text-align: center;
    }

    .info-right img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 40px 10px;
    }

    .main-title {
        font-size: 28px;
    }

    .sub-title {
        font-size: 36px;
        line-height: 42px;
    }

    .description {
        font-size: 16px;
    }
}
