/* 全局修复：抵消container-fluid负边距，防止内容左右截断 */
#main .container-fluid {
    overflow: hidden;
}
@media screen and (max-width: 992px) {
    #main .container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

/* 业务产品分区模块 */
.business-section {
    padding: 80px 0 0 0;
    background: #ffffff;
    /* 平板手机增加左右安全留白，彻底杜绝截断 */
    padding-left: 0;
    padding-right: 0;
}
.business-top-title {
    text-align: center;
    margin-bottom: 70px;
}
.business-top-title h2 {
    font-size: 26px;
    color: #222;
    font-weight: 600;
    margin-bottom: 12px;
}
.business-top-title p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.business-top-title p.green-text {
    color: #4BAA3C;
}
/* 两大产品区块通用：垂直居中对齐，图文等高 */
.business-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}
.business-block.reverse {
    flex-direction: row-reverse;
    align-items: center;
}
.business-text-box {
    flex: 1;
    padding: 40px 0;
}
.business-img-box {
    flex: 1;
}
/* PC端图片固定650高度 */
@media screen and (min-width:993px) {
    .business-img-box img {
        width: 100%;
        height: 650px;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 2px;
    }
}
/* 移动端取消固定高度自适应 */
@media screen and (max-width:992px) {
    .business-img-box img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 2px;
    }
}
.business-text-box h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
}
.business-text-box .desc-txt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}
/* 四格图标特性列表 - 全局固定2列，不竖排 */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    margin-bottom: 45px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4BAA3C;
    font-size: 36px;
}
.feature-item h4 {
    font-size: 15px;
    color: #222;
    margin: 0;
    font-weight: 600;
}
.feature-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
/* 绿色查看按钮 */
.btn-green-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: #4BAA3C;
    color: #fff;
    font-size: 14px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-green-view:hover {
    background: #3f9333;
}
.btn-green-view i {
    font-size: 16px;
}

/* 平板992px适配 */
@media screen and (max-width:992px) {
    .business-section {
        padding: 50px 0;
    }
    .business-block,
    .business-block.reverse {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .business-top-title {
        margin-bottom: 40px;
    }
    .business-block {
        margin-bottom: 50px;
    }
    .business-text-box {
        padding: 10px 0;
    }
}
/* 手机768px适配 */
@media screen and (max-width:768px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 15px;
    }
    .business-top-title h2 {
        font-size: 22px;
    }
    .business-text-box h3 {
        font-size: 19px;
    }
}

/* 关于我们 Quiénes Somos 模块 */
.about-section {
    padding: 80px 0;
    background: #fff;
}
.about-row {
    display: flex;
    gap: 50px;
    align-items: center;
}
.about-text-box {
    flex: 1;
}
.about-img-box {
    flex: 1;
}
.about-img-box img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.about-text-box h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 30px;
    font-weight: 600;
}
.about-desc {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.about-desc p {
    margin-bottom: 20px;
}
/* 数字统计区域 grid稳定布局，杜绝排版错乱 */
.about-num-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}
.about-num-item .num-val {
    font-size: 48px;
    color: #4BAA3C;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}
.about-num-item .num-txt {
    font-size: 16px;
    color: #666;
}
/* 圆角查看更多按钮 */
.btn-about-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4BAA3C;
    color: #fff;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-about-more:hover {
    background: #3f9333;
}
.btn-about-more i {
    font-size: 18px;
}

/* 平板适配 */
@media screen and (max-width:992px) {
    .about-row {
        flex-direction: column;
        gap: 35px;
    }
    .about-num-wrap {
        gap: 30px;
    }
    .about-num-item .num-val {
        font-size: 38px;
    }
    .about-text-box h2 {
        font-size: 28px;
    }
    .about-section {
        padding: 50px 0;
    }
}
/* 手机端数字2列排版，第三个居中独占一行，不会全部竖排 */
@media screen and (max-width:768px) {
    .about-num-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }
    .about-num-item:nth-child(3) {
        grid-column: 1 / -1;
        text-align: center;
    }
}