.quimatic-builder-component--solucoes {
    border: 0;
    background-color: #ffffff;
}

.quimatic-builder-component--solucoes .industrial-sectors {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 64px;
    background-color: #ffffff;
}

.quimatic-builder-component--solucoes .industrial-sectors__heading {
    width: 100%;
}

.quimatic-builder-component--solucoes .industrial-sectors__title {
    margin: 4px 0 0;
    color: #0a0203;
    text-align: center;
    font-family: "Myriad Pro", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.quimatic-builder-component--solucoes .industrial-sectors__cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.quimatic-builder-component--solucoes .sector-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 212px;
    height: 400px;
    padding: 10px 1px;
    overflow: hidden;
    border: 1px solid transparent;
    color: #ffffff;
    text-decoration: none;
}

.quimatic-builder-component--solucoes .sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.4) 100%);
}

.quimatic-builder-component--solucoes .sector-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quimatic-builder-component--solucoes .sector-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(255, 78, 0, 0.72);
    opacity: 0;
    transition: opacity 320ms ease;
}

.quimatic-builder-component--solucoes .sector-card__label {
    position: absolute;
    top: 354px;
    left: 0;
    right: 0;
    z-index: 3;
    width: max-content;
    max-width: calc(100% - 16px);
    margin: 0 auto;
    padding: 0;
    color: #ffffff;
    text-align: center;
    font-family: "Myriad Pro", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    transform: none;
    transition: top 280ms ease, transform 280ms ease;
}

.quimatic-builder-component--solucoes .sector-card__icon {
    position: absolute;
    top: 399px;
    left: 0;
    right: 0;
    z-index: 3;
    width: 64px;
    height: 64px;
    margin: 0 auto;
    text-align: center;
    transform: none;
    transition: top 280ms ease;
}

.quimatic-builder-component--solucoes .sector-card:hover .sector-card__overlay,
.quimatic-builder-component--solucoes .sector-card:focus-visible .sector-card__overlay {
    opacity: 1;
}

.quimatic-builder-component--solucoes .sector-card:hover .sector-card__icon,
.quimatic-builder-component--solucoes .sector-card:focus-visible .sector-card__icon {
    top: 260px;
}

.quimatic-builder-component--solucoes .sector-card:hover .sector-card__label,
.quimatic-builder-component--solucoes .sector-card:focus-visible .sector-card__label {
    top: 51%;
    transform: translateY(-50%);
}

.quimatic-builder-component--solucoes .sector-card:focus-visible {
    outline: 2px solid #ff4e00;
    outline-offset: 3px;
}

.quimatic-builder-component--solucoes .industrial-sectors__button {
    width: 303.333px;
    min-height: 42px;
    padding: 8px 20px;
    border: 1px solid #ff4e00;
    background: #ff4e00;
    color: #ffffff;
    text-align: center;
    font-family: "Myriad Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.quimatic-builder-component--solucoes .industrial-sectors__button:hover,
.quimatic-builder-component--solucoes .industrial-sectors__button:focus-visible {
    border-color: #ff4e00;
    background-color: #ffffff;
    color: #ff4e00;
    outline: none;
}

@media (max-width: 1360px) {
    .quimatic-builder-component--solucoes .industrial-sectors {
        padding: 80px 24px;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__cards {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .quimatic-builder-component--solucoes .sector-card {
        flex: 0 0 212px;
    }
}

@media (max-width: 767px) {
    .quimatic-builder-component--solucoes {
        margin-inline: -16px;
        background-color: #ffffff;
    }

    .quimatic-builder-component--solucoes .industrial-sectors {
        gap: 28px;
        padding: 56px 16px;
        background-color: #ffffff;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__heading {
        padding-top: 2.795px;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__title {
        margin: 0;
        text-align: left;
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: -0.4px;
        white-space: normal;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__cards {
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        height: 406px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .quimatic-builder-component--solucoes .sector-card {
        flex: 0 0 260px;
        width: 260px;
        max-width: 260px;
        height: 400px;
        scroll-snap-align: start;
    }

    .quimatic-builder-component--solucoes .sector-card__label {
        top: 354px;
        font-size: 20px;
        line-height: 28px;
    }

    .quimatic-builder-component--solucoes .sector-card__icon {
        display: none;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__button {
        width: 100%;
        max-width: 360px;
        min-height: 42px;
        padding: 8px 21px;
    }
}
