body {
    scroll-behavior: smooth;
    cursor: none !important;
}

.section-home-segmentos>article {
    width: 100%;

    picture {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: 14px 14px 0 0;
        max-height: 340px;

        .banner-seg {
            will-change: transform;
        }

        img {
            border-radius: 14px 14px 0 0;
            filter: brightness(0.4);
            object-fit: cover;
            height: 100%;
            width: 100%;

            transform: translateY(var(--y, 0px));
            transition: transform 0.4s ease, filter 0.3s ease;
        }

        h2 {
            position: absolute;
            color: #FFF;
            text-transform: uppercase;
            text-align: center;
            font-size: 73px;
            font-weight: 700;
            line-height: 75px;
            display: inline-block;

            transition: text-shadow 0.3s ease 1s;
        }
    }

    picture:hover img {
        filter: brightness(0.6);
        transform: translateY(var(--y, 0px)) scale(1.07);
    }

    picture:hover h2 {
        text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
        font-size: 79px;
        line-height: 80px;
        transition: all 0.3s ease 0s;
    }

    .div-1 {
        display: flex;
        align-items: center;
        background-color: #223C57;
        color: #FFF;
        border-radius: 0 0 22px 22px;
        height: 80px;

        p {
            text-align: center;
            width: 100%;
            font-size: 19px;
            font-weight: 300;
        }
    }
}

.section-home-segmentos>article:hover p {
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease 0s;
}


.section-home-segmentos>article:nth-of-type(2),
article:nth-of-type(3),
article:nth-of-type(4) {
    margin-top: 100px;
}

.custom-cursor {
    width: 25px;
    height: 25px;
    border: 2px solid #223C57;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    background-color: #ffffff8c;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #223C57;
    width: 25%;
    height: 25%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.custom-cursor.click {
    width: 30px;
    height: 30px;
}

a:hover,
div:hover {
    cursor: none !important;
}

picture h2 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}


@media (max-width: 754px) {
    .section-home-segmentos>article {
        picture {
            height: 240px;

            h2 {
                font-size: 40px;
                line-height: 40px;
            }
        }

        picture:hover h2 {
            font-size: 45px;
            line-height: 45px;
            transition: all 0.3s ease 0s;
        }

        .div-1 {
            p {
                font-size: 15px;
            }
        }
    }

    .custom-cursor {
        display: none !important;
    }
}