/* Estilo automático para a página: parceiros */

.texto-parceiro {
    flex: 1;
}

section.filter {
    margin-bottom: 40px;

    .tabs {
        padding: 40px 0;
        width: 100%;
        border-bottom: 1px solid #E3E3E3;
        gap: 50px;

        @media(max-width:992px){
            gap: 15px;
        }

        .filter-btn {
            padding: 12px 20px;
            display: inline-flex;
            text-wrap-mode: nowrap;
            gap: 8px;
            border: 1px solid #E3E3E3;
            border-radius: 10px;
            box-shadow: 5px 5px 8px 0 #2C2C2C26;
            color: #5A5A5A;
            background-color: #FFFFFF;
            font-weight: 500;
            font-size: 18px;

            svg {
                color: #E54344;

                path {
                    stroke: #E54344;
                }
            }

            &.active {
                background-color: #E54344;
                color: #FFFFFF;

                svg {
                    color: #fff;

                    path {
                        stroke: #fff;
                    }
                }
            }
        }
    }
}


section.parceiro{

    .box-parceiro {
        height: 100%;
        border: 1px solid #E3E3E3;
        border-radius: 10px;
        margin-bottom: 30px;
        padding: 16px 24px;
        display: flex;
        justify-content: space-between;
        position: relative;
        min-height: 190px;
        align-items: center;
        
        .logo-parceiro {
            display: flex;
            align-items: center;
            position: relative;
            border-right: 1px solid #E3E3E3;
            margin-right: 30px;

            img{
                width: 150px;
                object-fit: contain;
                height: 90px;
            }
        }

        h3{
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            color: #5A5A5A;
        }
        p{
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 0%;
            color: #5A5A5A;
        }
        
        li{
            font-weight: 400;
            font-size: 14px;
            line-height: 100%;
            color: #5A5A5A;
            margin-bottom: 8px;
        }

    }


}