.divisions-hero {
    overflow: hidden;
    background: #050505;
}

.divisions-hero__visual {
    position: relative;
    width: min(1536px, 100%);
    margin-inline: auto;
}

.divisions-hero__visual > img {
    display: block;
    width: 100%;
    height: auto;
}

.divisions-hero__hotspot {
    position: absolute;
    top: 73.2%;
    height: 6.5%;
    z-index: 2;
    border-radius: 7px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.divisions-hero__hotspot--consumibles {
    left: 6.7%;
    width: 26.8%;
}

.divisions-hero__hotspot--seguridad {
    left: 66.8%;
    width: 26.4%;
}

.divisions-hero__hotspot > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.divisions-hero__hotspot:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .7), 0 12px 28px rgba(0, 0, 0, .3);
}

.divisions-hero__hotspot:focus-visible {
    outline: 4px solid #fff;
    outline-offset: 3px;
}

.divisions-hero__mobile-actions {
    display: none;
}

@media (max-width: 600px) {
    .divisions-hero__hotspot {
        display: none;
    }

    .divisions-hero__mobile-actions {
        display: grid;
        gap: 10px;
        padding: 14px 16px 18px;
        background: #050505;
    }

    .divisions-hero__mobile-button {
        min-height: 50px;
        padding: 0 17px;
        border-radius: 7px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        text-decoration: none;
    }

    .divisions-hero__mobile-button--consumibles {
        background: #173f7d;
    }

    .divisions-hero__mobile-button--seguridad {
        background: #d4000a;
    }

    .divisions-hero__mobile-button span {
        font-size: 24px;
        line-height: 1;
    }
}
