/* LINHA COMERCIAL */
main .linha-comercial {
    width: 100%;
    height: auto;
    margin-top: 50px;
    background: linear-gradient(90deg, #243748, #0A1848);
}

main .cabecalho {
    width: 100%;
    height: 60px;
    display: block;
    padding-top: 13px;
    text-align: center;
}

main .title-section {
    margin-top: 5px;
    font-size: 33px;
    text-transform: uppercase;
    color: white;

}

main .headling {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #d9d9d9;
    text-align: center;
    letter-spacing: 3px;
    margin-top: 20px;
}

/* LINHA COMERCIAL - MENU */
main .menu-interativo {
    width: 80%;
    margin: 0 auto;
    display: block;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
    padding-bottom: 48px;
    /* ajuste o valor conforme necessário */
}

main .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
}

main .menu button {
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    color: white;
    background: none;
    border-radius: 7px;
    border: 3px solid rgba(255, 255, 255, .1);
    cursor: pointer;
}

main .menu button:hover {
    border: 3px solid rgba(255, 255, 255, .0);
    background: rgba(255, 255, 255, .3);
}

main .menu button.active {
    background-color: rgb(255, 255, 255);
    color: #111;
    border: 3px solid rgba(255, 255, 255, 0.85);
}

main .menu button.active:hover {
    color: #111;
    border: 3px solid #fff;
}

/* LINHA COMERCIAL - CONTEÚDO */

main .conteudo {
    display: none;
}

main .conteudo.ativo {
    display: flex;
    max-width: 70%;
    margin: 0 auto;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.item {
    width: 135px;
    display: flex;
    flex-direction: column-reverse;
}

.content-center {
    width: 100%;
    display: flex;
}

.item .photo {
    width: 100%;
    z-index: 2;
    height: 135px;
    border-radius: 5px;
    background-size: 100%;
    transition: .2s ease-in-out;
}

.item figcaption {
    position: relative;
    font-size: 15px;
    height: 45px;
    color: #CDD5FF;
    transition: .2s;
    text-align: center;
    padding-top: 8px;
    top: -50px;
    font-weight: 600;
    opacity: 0.0;
}

.item:hover figcaption {
    top: 0;
    opacity: 1.0;
}

/* Efeito blur e opacidade nos outros itens ao passar o mouse */
main .conteudo.ativo:hover .item:not(:hover) {
    filter: blur(2px);
    opacity: 0.4;
    transition: filter 0.2s, opacity 0.2s;
}

main .conteudo.ativo .item {
    transition: filter 0.2s, opacity 0.2s;
}

/* Responsivo */
@media (max-width: 760px),
(max-width:1070px) {
    main .conteudo.ativo {
        max-width: 90%;
    }

    .item figcaption {
        font-size: 12px;
    }

    main .item {
        width: 100%;
        max-width: 200px;
    }

    main .item .photo {
        height: 200px;
    }

    main .title-section {
        font-size: 28px;
    }

    main .menu-interativo {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

}

@media (max-width: 760px) {
    main .menu-interativo {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    main .conteudo.ativo:hover .item:not(:hover) {
        filter: none;
        opacity: 1;
        transition: none;
    }

    main .menu {
        display: flex;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    main .menu button {
        width: 90%;
        margin-bottom: 10px;
        padding: 10px;
    }
}

@media (max-width: 700px) {
    main .item {
        width: 9em;
    }


    .item figcaption {
        top: 0;
        opacity: 1.0;
        height: 25px;
    }

    main .item .photo {
        height: 143.99px;
    }
}

@media (max-width: 420px) {
    main .item {
        width: 8em;
    }

    main .item .photo {
        height: 143.99px;
    }
}