/* Correções de Diagramação para a Seção de Serviços Estratégicos Integrados */

/* Melhorar o layout dos itens de serviços em mobile */
@media only screen and (max-width: 767px) {
    .industries__content-box {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }
    
    .industries__single {
        display: block;
        width: 100%;
        margin-bottom: 0;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border-left: 4px solid #3c72fc;
    }
    
    .industries__single:before {
        display: none;
    }
    
    .industries__icon {
        margin-bottom: 20px;
        text-align: left;
    }
    
    .industries__icon span {
        font-size: 40px;
        color: #3c72fc;
    }
    
    .industries__title {
        margin-bottom: 15px;
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
    }
    
    .industries__title a {
        color: #ffffff;
        text-decoration: none;
        display: block;
    }
    
    .industries__text {
        font-size: 16px;
        line-height: 24px;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }
}

/* Melhorar o layout dos itens de serviços em tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .industries__content-box {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .industries__single {
        display: block;
        width: 100%;
        margin-bottom: 0;
        padding: 35px 25px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border-left: 4px solid #3c72fc;
    }
    
    .industries__single:before {
        display: none;
    }
    
    .industries__icon {
        margin-bottom: 20px;
    }
    
    .industries__icon span {
        font-size: 45px;
        color: #3c72fc;
    }
    
    .industries__title {
        margin-bottom: 15px;
        font-size: 22px;
        line-height: 30px;
        font-weight: 600;
    }
    
    .industries__title a {
        color: #ffffff;
        text-decoration: none;
        display: block;
    }
    
    .industries__text {
        font-size: 16px;
        line-height: 26px;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }
}

/* Melhorar o layout dos itens de serviços em desktop */
@media only screen and (min-width: 992px) {
    .industries__content-box {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }
    
    .industries__single {
        flex: 1;
        min-width: 300px;
        max-width: 350px;
        margin-bottom: 0;
        padding: 40px 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border-left: 4px solid #3c72fc;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .industries__single:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(60, 114, 252, 0.2);
    }
    
    .industries__single:before {
        display: none;
    }
    
    .industries__icon {
        margin-bottom: 25px;
    }
    
    .industries__icon span {
        font-size: 50px;
        color: #3c72fc;
    }
    
    .industries__title {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
    }
    
    .industries__title a {
        color: #ffffff;
        text-decoration: none;
        display: block;
    }
    
    .industries__text {
        font-size: 16px;
        line-height: 26px;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }
}

/* Melhorar o espaçamento geral da seção */
.industries {
    padding: 80px 0;
}

.industries .section-title {
    margin-bottom: 60px;
}

.industries__top-text-box {
    margin-bottom: 20px;
}

.industries__top-text {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade para telas muito pequenas */
@media only screen and (max-width: 480px) {
    .industries {
        padding: 60px 0;
    }
    
    .industries .section-title {
        margin-bottom: 40px;
    }
    
    .industries .section-title__title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .industries__single {
        padding: 25px 15px;
    }
    
    .industries__title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .industries__text {
        font-size: 15px;
        line-height: 22px;
    }
}

